changeset 374:2dd6dfda94d6

mod_auth_phpbb3: Fixed a missing function parameter causing auth to fail.
author Waqas Hussain <waqas20@gmail.com>
date Fri, 01 Jul 2011 07:51:00 +0500
parents 81c7b36e6cdd
children cac309a3d655
files mod_auth_phpbb3/mod_auth_phpbb3.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_auth_phpbb3/mod_auth_phpbb3.lua	Fri Jul 01 06:40:33 2011 +0500
+++ b/mod_auth_phpbb3/mod_auth_phpbb3.lua	Fri Jul 01 07:51:00 2011 +0500
@@ -176,7 +176,7 @@
 
 function provider.get_sasl_handler()
 	local profile = {
-		plain_test = function(username, password, realm)
+		plain_test = function(sasl, username, password, realm)
 			-- TODO stringprep
 			return provider.test_password(username, password), true;
 		end;