diff options
author | jake%acutex.net <> | 2001-08-17 21:42:34 +0200 |
---|---|---|
committer | jake%acutex.net <> | 2001-08-17 21:42:34 +0200 |
commit | 9839ebfefb8410fc1780829578f406c17e9491d5 (patch) | |
tree | 90a04fdc76dc940c74a86026000776cac015a8c4 /token.cgi | |
parent | 10bb38466248d862c135be1ca2a995031f600c20 (diff) | |
download | bugzilla-9839ebfefb8410fc1780829578f406c17e9491d5.tar.gz bugzilla-9839ebfefb8410fc1780829578f406c17e9491d5.tar.xz |
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
Diffstat (limited to 'token.cgi')
-rwxr-xr-x | token.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |