# HG changeset patch # User Waqas Hussain # Date 1309488793 -18000 # Node ID 8f5726adc61e8badeb09658b7c596052052eab2c # Parent cac309a3d655636ddca50205fb0cf18de44d9c44 mod_auth_phpbb3: Comment logging of user password. diff -r cac309a3d655 -r 8f5726adc61e mod_auth_phpbb3/mod_auth_phpbb3.lua --- a/mod_auth_phpbb3/mod_auth_phpbb3.lua Fri Jul 01 07:52:01 2011 +0500 +++ b/mod_auth_phpbb3/mod_auth_phpbb3.lua Fri Jul 01 07:53:13 2011 +0500 @@ -154,8 +154,7 @@ provider = { name = "phpbb3" }; function provider.test_password(username, password) - module:log("debug", "test_password '%s' for user %s", password, username); - + --module:log("debug", "test_password '%s' for user %s", tostring(password), tostring(username)); local hash = get_password(username); return hash and phpbbCheckHash(password, hash); end