aboutsummaryrefslogtreecommitdiffstats
path: root/include/template_processor.php
diff options
context:
space:
mode:
authorMichael <icarus@dabo.de>2012-02-28 00:03:49 +0100
committerMichael <icarus@dabo.de>2012-02-28 00:03:49 +0100
commitb84ef3039c97bf6657c7de5c2977e0aa7e4a7d77 (patch)
treee9b11902c9fe447d1057b8474b85c527a5667cac /include/template_processor.php
parentcce69f05097f559593c06e8595e1da5b904e5323 (diff)
parente11b51aca14ea36b514fdd4348443f4fae79b2ca (diff)
downloadvolse-hubzilla-b84ef3039c97bf6657c7de5c2977e0aa7e4a7d77.tar.gz
volse-hubzilla-b84ef3039c97bf6657c7de5c2977e0aa7e4a7d77.tar.bz2
volse-hubzilla-b84ef3039c97bf6657c7de5c2977e0aa7e4a7d77.zip
Merge remote branch 'upstream/master'
Diffstat (limited to 'include/template_processor.php')
-rwxr-xr-xinclude/template_processor.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/template_processor.php b/include/template_processor.php
index 7f270fb4b..28c3f07dd 100755
--- a/include/template_processor.php
+++ b/include/template_processor.php
@@ -160,7 +160,8 @@
krsort($this->nodes);
return $s;
}
-
+
+ /*
private function _str_replace($str){
#$this->search,$this->replace,
$searchs = $this->search;
@@ -183,7 +184,7 @@
}
return str_replace($this->search,$this->replace, $str);
- }
+ }*/
public function replace($s, $r) {
@@ -205,7 +206,8 @@
$os = ""; $count=0;
while($os!=$s && $count<10){
$os=$s; $count++;
- $s = $this->_str_replace($s);
+ //$s = $this->_str_replace($s);
+ $s = str_replace($this->search, $this->replace, $s);
}
return template_unescape($s);
}