summaryrefslogtreecommitdiff
path: root/inc/plugin.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/plugin.php')
-rw-r--r--inc/plugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/plugin.php b/inc/plugin.php
index 92a8efd62..80689e389 100644
--- a/inc/plugin.php
+++ b/inc/plugin.php
@@ -53,11 +53,11 @@ class DokuWiki_Plugin {
return $t;
}
public function getPluginName() {
- list($t, $p, $n) = explode('_', get_class($this), 4);
+ list(/* $t */, /* $p */, $n) = explode('_', get_class($this), 4);
return $n;
}
public function getPluginComponent() {
- list($t, $p, $n, $c) = explode('_', get_class($this), 4);
+ list(/* $t */, /* $p */, /* $n */, $c) = explode('_', get_class($this), 4);
return (isset($c)?$c:'');
}