From 6d7bd5c515513723c0fbefbcff73de22457b29c6 Mon Sep 17 00:00:00 2001 From: Michael Hamann Date: Wed, 20 Nov 2013 22:01:27 +0100 Subject: [PATCH] Fix a strict standards error in action.php --- action.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.php b/action.php index a889cfc..967d161 100644 --- a/action.php +++ b/action.php @@ -17,7 +17,7 @@ class action_plugin_pagemove extends DokuWiki_Action_Plugin { * * @param Doku_Event_Handler $controller The plugin controller */ - public function register($controller) { + public function register(Doku_Event_Handler $controller) { $controller->register_hook('IO_WIKIPAGE_READ', 'AFTER', $this, 'handle_read', array()); $controller->register_hook('PARSER_CACHE_USE', 'BEFORE', $this, 'handle_cache', array()); $controller->register_hook('INDEXER_VERSION_GET', 'BEFORE', $this, 'handle_index_version');