From 79316acb81fe9215b09ec41918b9a402560e7bef Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Fri, 25 May 2007 05:49:22 +0000 Subject: fixed find album art, including a fix from Karl Hungus... seriously I am not making that name up --- image.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'image.php') 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': -- cgit