Skip to content

Commit

Permalink
Merge branch 'release/0.9.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Dec 2, 2014
2 parents 50940da + e66b89f commit d012c8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions system/config/site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion system/src/Grav/Common/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function init(Grav $grav)
$this->driver = $this->getCacheDriver();

// Set the cache namespace to our unique key
// $this->driver->setNamespace($this->key);
$this->driver->setNamespace($this->key);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion system/src/Grav/Common/Config/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function __construct(array $items = array(), Grav $grav = null, $environm

public function key()
{
return $this->checksum;
return $this->checksum();
}

public function reload()
Expand Down

0 comments on commit d012c8e

Please sign in to comment.