summaryrefslogtreecommitdiff
path: root/lib/plugins/authad
diff options
context:
space:
mode:
authorAndreas Gohr <gohr@cosmocode.de>2015-02-09 09:17:32 +0100
committerAndreas Gohr <gohr@cosmocode.de>2015-02-09 09:17:32 +0100
commit4c32d8dc4120e5a2667564b4108b3708986ea47e (patch)
tree06b99478bc92c26f28c3fc42d261fb97cdfb1e9c /lib/plugins/authad
parent090f83d33e04d9dfa5a75e6229b19bfab29b7b51 (diff)
downloadrpg-4c32d8dc4120e5a2667564b4108b3708986ea47e.tar.gz
rpg-4c32d8dc4120e5a2667564b4108b3708986ea47e.tar.bz2
fixed method signature #1024
Diffstat (limited to 'lib/plugins/authad')
-rw-r--r--lib/plugins/authad/action.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/authad/action.php b/lib/plugins/authad/action.php
index 97be9897e..bc0f90c7e 100644
--- a/lib/plugins/authad/action.php
+++ b/lib/plugins/authad/action.php
@@ -17,7 +17,7 @@ class action_plugin_authad extends DokuWiki_Action_Plugin {
/**
* Registers a callback function for a given event
*/
- public function register(Doku_Event_Handler &$controller) {
+ public function register(Doku_Event_Handler $controller) {
$controller->register_hook('AUTH_LOGIN_CHECK', 'BEFORE', $this, 'handle_auth_login_check');
$controller->register_hook('HTML_LOGINFORM_OUTPUT', 'BEFORE', $this, 'handle_html_loginform_output');