summaryrefslogtreecommitdiff
path: root/lib/plugins/extension/helper/repository.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-08-09 14:06:34 +0200
committerAndreas Gohr <andi@splitbrain.org>2013-08-09 14:06:34 +0200
commit813d7e0910cdbb80dceef4d952adc551987c84e7 (patch)
tree5f2d9dc48539286729f596bcc504c741c46c57cd /lib/plugins/extension/helper/repository.php
parent55332151e03b99bbfd15e0fbaae391aae454d9eb (diff)
downloadrpg-813d7e0910cdbb80dceef4d952adc551987c84e7.tar.gz
rpg-813d7e0910cdbb80dceef4d952adc551987c84e7.tar.bz2
fixed some confusion between base, id and name
Diffstat (limited to 'lib/plugins/extension/helper/repository.php')
-rw-r--r--lib/plugins/extension/helper/repository.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/plugins/extension/helper/repository.php b/lib/plugins/extension/helper/repository.php
index 98128a9a3..38e07786e 100644
--- a/lib/plugins/extension/helper/repository.php
+++ b/lib/plugins/extension/helper/repository.php
@@ -110,10 +110,6 @@ class helper_plugin_extension_repository extends DokuWiki_Plugin {
return array();
}
- protected function cacheData($name, $data){
-
- }
-
/**
* Search for plugins or templates using the given query string
*
@@ -133,7 +129,7 @@ class helper_plugin_extension_repository extends DokuWiki_Plugin {
// store cache info for each extension
foreach($result as $ext){
- $name = $ext['name'];
+ $name = $ext['plugin'];
$cache = new cache('##extension_manager##'.$name, 'repo');
$cache->storeCache(serialize($ext));
$ids[] = $name;