Updated the paths.

This commit is contained in:
Josh Sherman 2010-05-15 22:39:25 -04:00
parent 489edfd61d
commit fcc6533be7
4 changed files with 14 additions and 12 deletions

View file

@ -91,7 +91,7 @@ abstract class Display_Common extends Object
// Loops through each passed template and variables it
foreach (func_get_args() as $template)
{
$template = TEMPLATE_PATH . $template . ($this->extension != false ? '.' . $this->extension : '');
$template = SITE_TEMPLATE_PATH . $template . ($this->extension != false ? '.' . $this->extension : '');
if (file_exists($template) && is_file($template) && is_readable($template))
{