Skip to content

Commit

Permalink
Fix a strict standards error in action.php
Browse files Browse the repository at this point in the history
  • Loading branch information
michitux committed Nov 20, 2013
1 parent 689122a commit 6d7bd5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 6d7bd5c

Please sign in to comment.