# HG changeset patch # User Waqas Hussain # Date 1309488660 -18000 # Node ID 2dd6dfda94d646ed1d4bc02ca4ad91af03b4e279 # Parent 81c7b36e6cddeec17d3b77a06e2dc1df1c7fb31b mod_auth_phpbb3: Fixed a missing function parameter causing auth to fail. diff -r 81c7b36e6cdd -r 2dd6dfda94d6 mod_auth_phpbb3/mod_auth_phpbb3.lua --- 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;