From 38112ba6e3bf9e5b0016a8f1e0baaa00af96bb32 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 5 Nov 2012 04:01:32 +0100 Subject: [PATCH] Fix bug with broken variable --- class.templater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class.templater.php b/class.templater.php index ff08cf4..7833e19 100644 --- a/class.templater.php +++ b/class.templater.php @@ -71,7 +71,7 @@ class NewTemplater else { $this->template = file_get_contents("templates/{$template_name}.tpl"); - $template_cache[$template_name] = $template; + $template_cache[$template_name] = $this->template; } if($template === false)