From 448f31331ba6ec5813bf5fa11ec8464f364b1971 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 11 Jul 2003 23:36:38 +0000 Subject: [PATCH] Fix failure to INCLUDE a file following its sole recompilation ... I should add that neither of these commits have added support for primary/secondary styles (e.g. styling of forums) ... won't commit these till all relevant styling changes have been implemented. git-svn-id: file:///svn/phpbb/trunk@4224 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php index 0c4f27414e..e9f5edb71e 100644 --- a/phpBB/includes/template.php +++ b/phpBB/includes/template.php @@ -248,7 +248,7 @@ class Template if ($include) { - if (!$this->force_recompile) + if (!$this->force_recompile && $filename) { include($filename); }