close #44 fixed f3 hive key for route caching
This commit is contained in:
@@ -238,8 +238,8 @@ class Controller {
|
||||
* @return mixed
|
||||
*/
|
||||
static function formatHiveKey($key){
|
||||
$illegalCharacters = ['-'];
|
||||
return str_replace($illegalCharacters, '', $key);
|
||||
$illegalCharacters = ['-', ' '];
|
||||
return strtolower( str_replace($illegalCharacters, '', $key) );
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[PATHFINDER]
|
||||
NAME = "PATHFINDER"
|
||||
; installed version (used for CSS/JS cache busting)
|
||||
VERSION = "v0.0.12"
|
||||
VERSION = "v0.0.13"
|
||||
; contact information (DO NOT CHANGE)
|
||||
CONTACT = "https://github.com/exodus4d"
|
||||
; source code (DO NOT CHANGE)
|
||||
|
||||
Reference in New Issue
Block a user