Merge branch 'release/0.9.8'

This commit is contained in:
Andy Miller
2014-12-01 17:06:31 -07:00
4 changed files with 4 additions and 3 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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);
}
/**

View File

@@ -116,7 +116,7 @@ class Config extends Data
public function key()
{
return $this->checksum;
return $this->checksum();
}
public function reload()