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/testing | |
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/testing')
-rw-r--r-- | lib/plugins/testing/action.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/plugins/testing/action.php b/lib/plugins/testing/action.php index e829847b6..a242ab0b7 100644 --- a/lib/plugins/testing/action.php +++ b/lib/plugins/testing/action.php @@ -7,7 +7,8 @@ * @author Tobias Sarnowski <tobias@trustedco.de> */ class action_plugin_testing extends DokuWiki_Action_Plugin { - function register(&$controller) { + + function register(Doku_Event_Handler $controller) { $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'dokuwikiStarted'); } |