aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_template.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-08-30 11:15:24 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-08-30 11:15:24 +0000
commitfd24241044338f9210319398ae10bc6ad02983ea (patch)
tree959ee0b8d0ee3d1dff8958163eb779ed517d25a9 /phpBB/includes/functions_template.php
parent36b8b94ea647930eb14edaf2e4b4d27ab56a05c9 (diff)
downloadforums-fd24241044338f9210319398ae10bc6ad02983ea.tar
forums-fd24241044338f9210319398ae10bc6ad02983ea.tar.gz
forums-fd24241044338f9210319398ae10bc6ad02983ea.tar.bz2
forums-fd24241044338f9210319398ae10bc6ad02983ea.tar.xz
forums-fd24241044338f9210319398ae10bc6ad02983ea.zip
Revert INC/DEC feature. It is not consistent with the other template variables - bad idea. ;) We will get to it though... but not now.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10064 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_template.php')
-rw-r--r--phpBB/includes/functions_template.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/phpBB/includes/functions_template.php b/phpBB/includes/functions_template.php
index f22a48bddb..1d3a4d74f8 100644
--- a/phpBB/includes/functions_template.php
+++ b/phpBB/includes/functions_template.php
@@ -191,14 +191,6 @@ class template_compile
$compile_blocks[] = '<?php ' . $this->compile_tag_define($block_val[2], false) . ' ?>';
break;
- case 'INC':
- $compile_blocks[] = '<?php ' . $this->compile_tag_counter($block_val[2], '++') . ' ?>';
- break;
-
- case 'DEC':
- $compile_blocks[] = '<?php ' . $this->compile_tag_counter($block_val[2], '--') . ' ?>';
- break;
-
case 'INCLUDE':
$temp = array_shift($include_blocks);
@@ -634,28 +626,6 @@ class template_compile
return (($match[1]) ? $this->generate_block_data_ref(substr($match[1], 0, -1), true, true) . '[\'' . $match[2] . '\']' : '$this->_tpldata[\'DEFINE\'][\'.\'][\'' . $match[2] . '\']') . ' = ' . $match[4] . ';';
}
-
- /**
- * Compile INC/DEC tags
- * INC/DEC tags support defined template variables as well as normal template variables
- * @access private
- */
- function compile_tag_counter($tag_args, $operation = '++')
- {
- preg_match('#^((?:[a-z0-9\-_]+\.)+)?(\$)?(?=[A-Z])([A-Z0-9\-_]+)#s', $tag_args, $varrefs);
-
- if (empty($varrefs[0]))
- {
- return '';
- }
-
- // Build token
- $token = (!empty($varrefs[1])) ? $this->generate_block_data_ref(substr($varrefs[1], 0, -1), true, $varrefs[2]) . '[\'' . $varrefs[3] . '\']' : (($varrefs[2]) ? '$this->_tpldata[\'DEFINE\'][\'.\'][\'' . $varrefs[3] . '\']' : '$this->_rootref[\'' . $varrefs[3] . '\']');
-
- // Increase or decrease token ;)
- return "echo {$token}{$operation};";
- }
-
/**
* Compile INCLUDE tag
* @access private