diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-25 05:49:22 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-25 05:49:22 +0000 |
commit | 79316acb81fe9215b09ec41918b9a402560e7bef (patch) | |
tree | 9a71adc5d6dd297e3f39976796e380be10f19a4e /image.php | |
parent | 035b273ff529a34e1d2cb52bd61c653c6bff8250 (diff) | |
download | ampache-79316acb81fe9215b09ec41918b9a402560e7bef.tar.gz ampache-79316acb81fe9215b09ec41918b9a402560e7bef.tar.bz2 ampache-79316acb81fe9215b09ec41918b9a402560e7bef.zip |
fixed find album art, including a fix from Karl Hungus... seriously I am not making that name up
Diffstat (limited to 'image.php')
-rw-r--r-- | image.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,7 +24,7 @@ * and dumps it to the browser as an image mime type. * */ -require('lib/init.php'); +require 'lib/init.php'; /* Decide what size this image is */ switch ($_REQUEST['thumb']) { @@ -51,7 +51,7 @@ switch ($_REQUEST['thumb']) { switch ($_REQUEST['type']) { case 'popup': - show_template('show_big_art'); + require_once Config::get('prefix') . '/templates/show_big_art.inc.php'; break; // If we need to pull the data out of the session case 'session': |