summaryrefslogtreecommitdiff
path: root/lib/plugins/popularity/action.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-07-28 12:02:06 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-07-28 12:02:06 +0200
commite8b5a4f91c8a6e230a6cfe13c43dc9ddce31e253 (patch)
tree419623aa4696b6c67b75e3fca3f9eb264828b2be /lib/plugins/popularity/action.php
parent0d16f6e357991625b4e88fc7a147c8d743e890d7 (diff)
downloadrpg-e8b5a4f91c8a6e230a6cfe13c43dc9ddce31e253.tar.gz
rpg-e8b5a4f91c8a6e230a6cfe13c43dc9ddce31e253.tar.bz2
fix E_STRICT errors FS#2427
This commit fixes all E_STRICT messages shown when running the test suite. There might be more problems not covered by tests, yet. For compatibility reasons with plugins, E_STRICT errors are still supressed.
Diffstat (limited to 'lib/plugins/popularity/action.php')
-rw-r--r--lib/plugins/popularity/action.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/popularity/action.php b/lib/plugins/popularity/action.php
index bf11efba6..1c7a2f65d 100644
--- a/lib/plugins/popularity/action.php
+++ b/lib/plugins/popularity/action.php
@@ -18,7 +18,7 @@ class action_plugin_popularity extends Dokuwiki_Action_Plugin {
/**
* Register its handlers with the dokuwiki's event controller
*/
- function register(&$controller) {
+ function register(Doku_Event_Handler $controller) {
$controller->register_hook('INDEXER_TASKS_RUN', 'AFTER', $this, '_autosubmit', array());
}