diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-11-04 12:24:43 -0800 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-11-04 12:24:43 -0800 |
commit | 1153129404037610467820008829700c46f86e92 (patch) | |
tree | 037ea2efb1652c6c5ef6929eb7e101606ffff5c1 /lib/plugins/action.php | |
parent | cff21c5ab0a25e046f23d40760da442ac81ced51 (diff) | |
parent | e8b5a4f91c8a6e230a6cfe13c43dc9ddce31e253 (diff) | |
download | rpg-1153129404037610467820008829700c46f86e92.tar.gz rpg-1153129404037610467820008829700c46f86e92.tar.bz2 |
Merge pull request #121 from splitbrain/strict
fix E_STRICT errors FS#2427
Diffstat (limited to 'lib/plugins/action.php')
-rw-r--r-- | lib/plugins/action.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/action.php b/lib/plugins/action.php index 885bd7c96..a2ad969d7 100644 --- a/lib/plugins/action.php +++ b/lib/plugins/action.php @@ -17,7 +17,7 @@ class DokuWiki_Action_Plugin extends DokuWiki_Plugin { /** * Registers a callback function for a given event */ - function register($controller) { + function register(Doku_Event_Handler $controller) { trigger_error('register() not implemented in '.get_class($this), E_USER_WARNING); } } |