aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_template.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2005-12-28 17:35:20 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2005-12-28 17:35:20 +0000
commit0334d424779dac4f0adf89caa0362a03f93163c3 (patch)
tree91f9771d64488df6366eac5e76f783a1979576e1 /phpBB/includes/functions_template.php
parent761598e1b78d704b7f9aed82f8ac35673b4174bd (diff)
downloadforums-0334d424779dac4f0adf89caa0362a03f93163c3.tar
forums-0334d424779dac4f0adf89caa0362a03f93163c3.tar.gz
forums-0334d424779dac4f0adf89caa0362a03f93163c3.tar.bz2
forums-0334d424779dac4f0adf89caa0362a03f93163c3.tar.xz
forums-0334d424779dac4f0adf89caa0362a03f93163c3.zip
- some changes to browser checking (was the reason for not working logins)
- partly working style acp - other tiny changes here and there git-svn-id: file:///svn/phpbb/trunk@5388 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_template.php')
-rw-r--r--phpBB/includes/functions_template.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/includes/functions_template.php b/phpBB/includes/functions_template.php
index d82150993e..429346b7a4 100644
--- a/phpBB/includes/functions_template.php
+++ b/phpBB/includes/functions_template.php
@@ -193,7 +193,6 @@ class template_compile
for ($i = 0, $size = sizeof($text_blocks); $i < $size; $i++)
{
$trim_check_text = trim($text_blocks[$i]);
- $trim_check_block = trim($compile_blocks[$i]);
$template_php .= (!$no_echo) ? ((!empty($trim_check_text)) ? $text_blocks[$i] : '') . ((!empty($compile_blocks[$i])) ? $compile_blocks[$i] : '') : ((!empty($trim_check_text)) ? $text_blocks[$i] : '') . ((!empty($compile_blocks[$i])) ? $compile_blocks[$i] : '');
}