From 9008916c6c9f5257082fa36b6ed241723100c932 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Wed, 16 Feb 2011 19:25:50 +1100 Subject: [PATCH] Removed bug where some config stuff was overrided by script. --- inc/config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/config.php b/inc/config.php index 5d798581..29d0d807 100644 --- a/inc/config.php +++ b/inc/config.php @@ -156,15 +156,15 @@ $config['dir']['res'] = 'res/'; // For load balancing, having a seperate server (and domain/subdomain) for serving static content is possible. // This can either be a directory or a URL (eg. http://static.example.org/) - $config['dir']['static'] = $config['root'] . 'static/'; + //$config['dir']['static'] = $config['root'] . 'static/'; // Where to store the .html templates. This folder and templates must exist or fatal errors will be thrown. $config['dir']['template'] = getcwd() . '/templates'; // Static images // These can be URLs OR base64 (data URI scheme) - $config['image_sticky'] = $config['dir']['static'] . 'sticky.gif'; - $config['image_locked'] = $config['dir']['static'] . 'locked.gif'; - $config['image_deleted'] = $config['dir']['static'] . 'deleted.png'; - $config['image_zip'] = $config['dir']['static'] . 'zip.png'; + //$config['image_sticky'] = $config['dir']['static'] . 'sticky.gif'; + //$config['image_locked'] = $config['dir']['static'] . 'locked.gif'; + //$config['image_deleted'] = $config['dir']['static'] . 'deleted.png'; + //$config['image_zip'] = $config['dir']['static'] . 'zip.png'; // If for some reason the folders and static HTML index files aren't in the current working direcotry, // enter the directory path here. Otherwise, keep it false.