diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2011-06-24 11:55:37 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2011-06-24 11:55:37 -0400 |
commit | 383c21ffa981f11d534871f76126f6cf4b7f4d69 (patch) | |
tree | 6ffb0b29788c1efe1254b8debbacc3ee15192794 /lib/class/update.class.php | |
parent | 1ad8c46833d0f20738323f37d23bbe6e8d2cccfe (diff) | |
download | ampache-383c21ffa981f11d534871f76126f6cf4b7f4d69.tar.gz ampache-383c21ffa981f11d534871f76126f6cf4b7f4d69.tar.bz2 ampache-383c21ffa981f11d534871f76126f6cf4b7f4d69.zip |
Use Dba::fetch_assoc instead of mysql_fetch_assoc
Diffstat (limited to 'lib/class/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 5f48804a..beb0a6c9 100644 --- a/lib/class/update.class.php +++ b/lib/class/update.class.php @@ -497,7 +497,7 @@ class Update { $user_array = array(); - while ($r = mysql_fetch_assoc($db_results)) { + while ($r = Dba::fetch_assoc($db_results)) { $username = $r['username']; $user_array[$username] = Dba::escape($r['id']); } // end while |