diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-05-09 19:50:35 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-05-09 19:50:35 +0000 |
commit | 3a5a8dad2e8ddc0162496baa3f839651c05b2843 (patch) | |
tree | e974f8ea0c9e60435a80092ab7537fbd6cba0339 /templates/show_album_art.inc.php | |
parent | 5e4162cd0ada44796008c6d1cafb98ecf62226c1 (diff) | |
download | ampache-3a5a8dad2e8ddc0162496baa3f839651c05b2843.tar.gz ampache-3a5a8dad2e8ddc0162496baa3f839651c05b2843.tar.bz2 ampache-3a5a8dad2e8ddc0162496baa3f839651c05b2843.zip |
Some more Art-related cleanup. Removing references to album_data, removing old
art methods from Album, etc. Should fix FS#76
Diffstat (limited to 'templates/show_album_art.inc.php')
-rw-r--r-- | templates/show_album_art.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_album_art.inc.php b/templates/show_album_art.inc.php index a279a93a..cc87139d 100644 --- a/templates/show_album_art.inc.php +++ b/templates/show_album_art.inc.php @@ -34,7 +34,7 @@ while ($i <= $rows) { while ($j < 4) { $key = $i*4+$j; $image_url = Config::get('web_path') . '/image.php?type=session&image_index=' . $key; - $dimensions = Core::image_dimensions(Album::get_image_from_source($_SESSION['form']['images'][$key])); + $dimensions = Core::image_dimensions(Art::get_from_source($_SESSION['form']['images'][$key])); if (!isset($images[$key])) { echo "<td> </td>\n"; } else { ?> |