From 334fd907adbb61576b9487d19664318ffe3fab01 Mon Sep 17 00:00:00 2001 From: Daniel Thee Roperto Date: Fri, 2 Sep 2016 17:50:27 +1000 Subject: [PATCH] Fixed auth function signature. --- auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth.php b/auth.php index 0d84e2c..b8838f9 100644 --- a/auth.php +++ b/auth.php @@ -46,7 +46,7 @@ class auth_plugin_outage extends auth_plugin_base * Do not authenticate users. * @return bool False */ - public function user_login() { + public function user_login($username, $password) { return false; } }