This commit is contained in:
2018-08-24 16:52:17 +02:00
parent c3b59bceee
commit e5b6624bb5
176 changed files with 12363 additions and 564 deletions
+6
View File
@@ -1,3 +1,9 @@
# v1.3.3
## 08/21/2018
1. [](#bugfix)
* Reinstated caching that was broken from previous PR [#23](https://github.com/getgrav/grav-plugin-taxonomylist/issues/23)
# v1.3.2
## 05/21/2017
+1 -1
View File
@@ -1,5 +1,5 @@
name: Taxonomy List
version: 1.3.2
version: 1.3.3
description: "With the **TaxonomyList plugin** you can easily create list of **taxonomy** items such as **tags**, **categories**, etc."
icon: tag
author:
@@ -63,7 +63,7 @@ class Taxonomylist
$hash = hash('md5', serialize($taxonomylist));
$list = [];
if ($taxonomy = $cache->fetch($hash . 'x')) {
if ($taxonomy = $cache->fetch($hash)) {
return $taxonomy;
} else {
foreach ($taxonomylist as $taxonomyName => $taxonomyValue) {