summaryrefslogtreecommitdiffstats
path: root/image.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-05-25 05:49:22 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-05-25 05:49:22 +0000
commit79316acb81fe9215b09ec41918b9a402560e7bef (patch)
tree9a71adc5d6dd297e3f39976796e380be10f19a4e /image.php
parent035b273ff529a34e1d2cb52bd61c653c6bff8250 (diff)
downloadampache-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.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/image.php b/image.php
index 07f15a3e..8bd6d5e3 100644
--- a/image.php
+++ b/image.php
@@ -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':