diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-05-10 15:18:20 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-05-10 15:18:20 +0200 |
commit | 811653d71565cce94ca1b27f4cdebc60769e2d11 (patch) | |
tree | ac7268c84b4446f1629765c3315b4df13aa45bff /lib | |
parent | 52ab27d83d0fa4f6be37eb2d4d58d6c51b76e66f (diff) | |
download | rpg-811653d71565cce94ca1b27f4cdebc60769e2d11.tar.gz rpg-811653d71565cce94ca1b27f4cdebc60769e2d11.tar.bz2 |
fix icon for plugins following templates in extension manager
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plugins/extension/helper/extension.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/plugins/extension/helper/extension.php b/lib/plugins/extension/helper/extension.php index 7958cd2da..43e4452c0 100644 --- a/lib/plugins/extension/helper/extension.php +++ b/lib/plugins/extension/helper/extension.php @@ -57,6 +57,8 @@ class helper_plugin_extension_extension extends DokuWiki_Plugin { if(substr($id, 0 , 9) == 'template:'){ $this->base = substr($id, 9); $this->is_template = true; + } else { + $this->is_template = false; } $this->localInfo = array(); |