diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-10-04 13:09:10 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-10-04 13:09:10 +0000 |
commit | 30aeac65dccceab18e19318e5981118f150c0647 (patch) | |
tree | 409e1a742796ff1c988593c43f19a9533c258742 /phpBB/includes/template.php | |
parent | b5bbc005a51658c7496abdcad9b23e978fb7db68 (diff) | |
download | forums-30aeac65dccceab18e19318e5981118f150c0647.tar forums-30aeac65dccceab18e19318e5981118f150c0647.tar.gz forums-30aeac65dccceab18e19318e5981118f150c0647.tar.bz2 forums-30aeac65dccceab18e19318e5981118f150c0647.tar.xz forums-30aeac65dccceab18e19318e5981118f150c0647.zip |
Well, here are all my changes ... don't blame me if things break :D
git-svn-id: file:///svn/phpbb/trunk@2923 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/template.php')
-rw-r--r-- | phpBB/includes/template.php | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php index acb4b357ed..60f6551ce5 100644 --- a/phpBB/includes/template.php +++ b/phpBB/includes/template.php @@ -138,11 +138,7 @@ class Template { } $str = ''; - while ( !feof($fp) ) - { - $str .= fread($fp, 4096); - } - + $str = fread($fp, filesize($this->files[$handle])); @fclose($fp); $this->uncompiled_code[$handle] = trim($str); @@ -177,6 +173,7 @@ class Template { echo $db->sql_report; return TRUE; } + $_str = ''; if (!$this->compile_load($_str, $handle, true)) @@ -186,9 +183,7 @@ class Template { message_die("Template->pparse(): Couldn't load template file for handle $handle"); } - // // Actually compile the code now. - // $this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]); $this->compile_write($handle, $this->compiled_code[$handle]); @@ -561,9 +556,7 @@ class Template { return "include('" . $this->root . '/' . $tag_args . "');\n"; } - // // This is from Smarty - // function _parse_is_expr($is_arg, $tokens) { $expr_end = 0; @@ -697,9 +690,7 @@ class Template { $filename = $this->cachedir . $this->filename[$handle] . '.' . $phpEx; - // // Recompile page if the original template is newer, otherwise load the compiled version - // if ( file_exists($filename) && @filemtime($filename) >= @filemtime($this->files[$handle]) ) { $_str = ''; |