Commit 9839ebfe authored by jake%acutex.net's avatar jake%acutex.net

Fix for bug 95731: "INSERT INTO shadowlog" failed because "Table 'shadowlog' not…

Fix for bug 95731: "INSERT INTO shadowlog" failed because "Table 'shadowlog' not locked", fixed typo in lock tables command. Patch by Myk Melez <myk@mozilla.org> r= jake@acutex.net
parent 10bb3846
......@@ -218,7 +218,7 @@ sub changePassword {
# Update the user's password in the profiles table and delete the token
# from the tokens table.
SendSQL("LOCK TABLE profiles WRITE , tokens WRITE");
SendSQL("LOCK TABLES profiles WRITE , tokens WRITE");
SendSQL("UPDATE profiles
SET cryptpassword = $quotedpassword
WHERE userid = $userid");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment