summaryrefslogtreecommitdiffstats
path: root/albums.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-29 07:21:47 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-29 07:21:47 +0000
commit755ab35f6b6b0e78bbff6ca24f3f44008d9a4f71 (patch)
treebef53f58330458ed620afd0e9ada526355d99ff7 /albums.php
parentee9999a93074c737ffc298c8370ef05a3121cfa0 (diff)
downloadampache-755ab35f6b6b0e78bbff6ca24f3f44008d9a4f71.tar.gz
ampache-755ab35f6b6b0e78bbff6ca24f3f44008d9a4f71.tar.bz2
ampache-755ab35f6b6b0e78bbff6ca24f3f44008d9a4f71.zip
fixed the album art gathering, enabled art resizing and saving of said stuff... not sure if saving and retriving is saving any time. tweaked show test config wording
Diffstat (limited to 'albums.php')
-rw-r--r--albums.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/albums.php b/albums.php
index 9c97163b..ef5b0aa5 100644
--- a/albums.php
+++ b/albums.php
@@ -116,11 +116,10 @@ switch ($_REQUEST['action']) {
if (count($images)) {
// We don't want to store raw's in here so we need to strip them out into a seperate array
foreach ($images as $index=>$image) {
- if (isset($image[$index]['raw'])) {
+ if ($image['raw']) {
unset($images[$index]['raw']);
}
} // end foreach
-
// Store the results for further use
$_SESSION['form']['images'] = $images;
require_once Config::get('prefix') . '/templates/show_album_art.inc.php';