diff options
author | xgizzmo <xgizzmo@ampache> | 2008-04-14 15:08:42 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2008-04-14 15:08:42 +0000 |
commit | 9504931c64a67156cde61c597ab4b111e3dc478f (patch) | |
tree | 1cb1c1a6b55a033584f11a3fcf2f15f25cb9ee60 | |
parent | 78ea591e3289aa71e747ea2e04bf120489dc5fd7 (diff) | |
download | ampache-9504931c64a67156cde61c597ab4b111e3dc478f.tar.gz ampache-9504931c64a67156cde61c597ab4b111e3dc478f.tar.bz2 ampache-9504931c64a67156cde61c597ab4b111e3dc478f.zip |
Fixed typo in update.class.php
-rw-r--r-- | lib/class/update.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/update.class.php b/lib/class/update.class.php index 6efb2de6..31f9d7a1 100644 --- a/lib/class/update.class.php +++ b/lib/class/update.class.php @@ -410,7 +410,7 @@ class Update { $user_id = $user_array[$username]; $username = Dba::escape($username); - $sql = "UPDATE `access_list` SET `user`='$user_id' WERE `user`='$username'"; + $sql = "UPDATE `access_list` SET `user`='$user_id' WHERE `user`='$username'"; $update_results = Dba::query($sql); } // end while access_list |