summaryrefslogtreecommitdiffstats
path: root/lib/class/album.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-05-18 21:47:44 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-05-18 21:47:44 +0000
commit755fffbd78dc8411b0ba8d0918416f7c2ff5e4a0 (patch)
tree93fef0a189fa74e0660ec4424202293b10e424b4 /lib/class/album.class.php
parentd6075fe25c39303425f7291b9fb3658217c48097 (diff)
downloadampache-755fffbd78dc8411b0ba8d0918416f7c2ff5e4a0.tar.gz
ampache-755fffbd78dc8411b0ba8d0918416f7c2ff5e4a0.tar.bz2
ampache-755fffbd78dc8411b0ba8d0918416f7c2ff5e4a0.zip
fix typo also tweak the localplay controllers so they update the active instance correctly
Diffstat (limited to 'lib/class/album.class.php')
-rw-r--r--lib/class/album.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/album.class.php b/lib/class/album.class.php
index e20e2373..cb90a518 100644
--- a/lib/class/album.class.php
+++ b/lib/class/album.class.php
@@ -800,7 +800,7 @@ class Album extends database_object {
// Push the image into the database
$sql = "REPLACE INTO `album_data` SET `art` = '" . Dba::escape($image) . "'," .
" `art_mime` = '" . Dba::escape($mime) . "'" .
- ", `album_id` = '$this->id',"
+ ", `album_id` = '$this->id'," .
"`thumb` = NULL, `thumb_mime`=NULL";
$db_results = Dba::query($sql);