summaryrefslogtreecommitdiffstats
path: root/lib/class/preference.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2010-03-21 21:31:29 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2010-03-21 21:31:29 +0000
commit329aecfdb908ac512596f544b8067a7a497de90d (patch)
tree0c5b982c9771d72203a32b04079b193f3eef22f6 /lib/class/preference.class.php
parentf0e4f01747da52ce5dfb42af90251445aef212ae (diff)
downloadampache-329aecfdb908ac512596f544b8067a7a497de90d.tar.gz
ampache-329aecfdb908ac512596f544b8067a7a497de90d.tar.bz2
ampache-329aecfdb908ac512596f544b8067a7a497de90d.zip
Switch Album so it uses new art methods
Diffstat (limited to 'lib/class/preference.class.php')
-rw-r--r--lib/class/preference.class.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/class/preference.class.php b/lib/class/preference.class.php
index 528e6de9..a6cf2d11 100644
--- a/lib/class/preference.class.php
+++ b/lib/class/preference.class.php
@@ -312,9 +312,10 @@ class Preference {
*/
public static function fix_preferences($results) {
- $results['auth_methods'] = trim($results['auth_methods']) ? explode(",",$results['auth_methods']) : array();
- $results['tag_order'] = trim($results['tag_order']) ? explode(",",$results['tag_order']) : array();
- $results['album_art_order'] = trim($results['album_art_order']) ? explode(",",$results['album_art_order']) : array();
+ $results['auth_methods'] = trim($results['auth_methods']) ? explode(",",$results['auth_methods']) : array();
+ $results['tag_order'] = trim($results['tag_order']) ? explode(",",$results['tag_order']) : array();
+ $results['art_order'] = trim($results['art_order']) ? explode(",",$results['art_order']) : array();
+
if (isset($results['amazin_base_urls']))
$results['amazon_base_urls'] = trim($results['amazin_base_urls']) ? explode(",",$results['amazon_base_urls']) : array();
else