diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-26 04:08:45 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-26 04:08:45 +0000 |
commit | 13ae6a0371ae26023880a0ad69b3b1587db8dd76 (patch) | |
tree | ec0f94a7ee29fb4d34056f3e5a79bd620ad93161 /lib/class/album.class.php | |
parent | 9803be045ba3895cc981d5e7e22fd80f80d6544d (diff) | |
download | ampache-13ae6a0371ae26023880a0ad69b3b1587db8dd76.tar.gz ampache-13ae6a0371ae26023880a0ad69b3b1587db8dd76.tar.bz2 ampache-13ae6a0371ae26023880a0ad69b3b1587db8dd76.zip |
show the top 2 tags on songs, sync fixes from /branches/3.4 improved caching on song object
Diffstat (limited to 'lib/class/album.class.php')
-rw-r--r-- | lib/class/album.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/album.class.php b/lib/class/album.class.php index d689a74d..ad0f6ef5 100644 --- a/lib/class/album.class.php +++ b/lib/class/album.class.php @@ -276,7 +276,7 @@ class Album extends database_object { public function get_art() { // Attempt to get the resized art first - //$art = $this->get_resized_db_art(); + $art = $this->get_resized_db_art(); if (!is_array($art)) { $art = $this->get_db_art(); |