diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-13 18:35:42 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-13 18:35:42 -0400 |
commit | 8170ff7c8ce6cd10daefeaa79f677ae544e0186a (patch) | |
tree | 9bfe1b23192a026988549141709f40956b696069 | |
parent | f47e8e7f7dfe2015381bc0576a56ea06a3b0412d (diff) | |
download | ampache-8170ff7c8ce6cd10daefeaa79f677ae544e0186a.tar.gz ampache-8170ff7c8ce6cd10daefeaa79f677ae544e0186a.tar.bz2 ampache-8170ff7c8ce6cd10daefeaa79f677ae544e0186a.zip |
Replace errant direct mysql call with Dba::write
-rw-r--r-- | artists.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/artists.php b/artists.php index 40ae256d..7f57df4c 100644 --- a/artists.php +++ b/artists.php @@ -159,7 +159,7 @@ switch($_REQUEST['action']) { $flag->add($song->id,"song","retag","Renamed artist, retag"); $flag_qstring = "REPLACE INTO flagged " . "SET type = 'setid3', song = '" . $song->id . "', date = '" . time() . "', user = '" . $GLOBALS['user']->username . "'"; - mysql_query($flag_qstring, dbh()); + Dba::write($flag_qstring); } } // end if they wanted to update |