aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-07-11 23:36:38 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-07-11 23:36:38 +0000
commit448f31331ba6ec5813bf5fa11ec8464f364b1971 (patch)
treed373b691b79381eb4b6946a01f94e474d68810ad /phpBB/includes
parent1b129a9034822bdd2ecf242da450ce463dad0fdb (diff)
downloadforums-448f31331ba6ec5813bf5fa11ec8464f364b1971.tar
forums-448f31331ba6ec5813bf5fa11ec8464f364b1971.tar.gz
forums-448f31331ba6ec5813bf5fa11ec8464f364b1971.tar.bz2
forums-448f31331ba6ec5813bf5fa11ec8464f364b1971.tar.xz
forums-448f31331ba6ec5813bf5fa11ec8464f364b1971.zip
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
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/template.php2
1 files changed, 1 insertions, 1 deletions
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);
}