mirror of
https://github.com/getgrav/grav.git
synced 2026-07-08 13:42:04 +02:00
Merge branch 'release/0.9.8'
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
* Added ability to set HTTP status code from page header
|
||||
* Implemented simple wild-card custom routing
|
||||
2. [](#improved)
|
||||
* Fixed elusive double load to fully cache issue (hopefully!)
|
||||
* Fixed elusive double load to fully cache issue (crossing fingers...)
|
||||
* Ensure Twig tags are treated as block items in markdown
|
||||
* Removed some older deprecated methods
|
||||
* Ensure onPageContentProcessed() event only fires when not cached
|
||||
|
||||
@@ -12,3 +12,4 @@ summary:
|
||||
routes:
|
||||
/something/else: '/blog/sample-3' # Alias for /blog/sample-3
|
||||
/another/one/here: '/blog/sample-3' # Another alias for /blog/sample-3
|
||||
/new/*: '/blog/*' # Wildcard any /new/my-page URL to /blog/my-page Route
|
||||
|
||||
@@ -73,7 +73,7 @@ class Cache extends Getters
|
||||
$this->driver = $this->getCacheDriver();
|
||||
|
||||
// Set the cache namespace to our unique key
|
||||
// $this->driver->setNamespace($this->key);
|
||||
$this->driver->setNamespace($this->key);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -116,7 +116,7 @@ class Config extends Data
|
||||
|
||||
public function key()
|
||||
{
|
||||
return $this->checksum;
|
||||
return $this->checksum();
|
||||
}
|
||||
|
||||
public function reload()
|
||||
|
||||
Reference in New Issue
Block a user