summaryrefslogtreecommitdiffstats
path: root/lib/class/update.class.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2011-06-24 11:55:37 -0400
committerPaul Arthur <paul.arthur@flowerysong.com>2011-06-24 11:55:37 -0400
commit383c21ffa981f11d534871f76126f6cf4b7f4d69 (patch)
tree6ffb0b29788c1efe1254b8debbacc3ee15192794 /lib/class/update.class.php
parent1ad8c46833d0f20738323f37d23bbe6e8d2cccfe (diff)
downloadampache-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.php2
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