diff options
author | Friendika <info@friendika.com> | 2011-10-27 04:38:33 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-27 04:38:33 -0700 |
commit | ea0ab6fbac0dc317eb2e81abedbd3855c08a14c5 (patch) | |
tree | 7d05e4a1ad6e318f4e89d902db3c9fd8225f1901 /include | |
parent | abe96155b42f0f824d05d08126d0ced0d3c5ab38 (diff) | |
download | volse-hubzilla-ea0ab6fbac0dc317eb2e81abedbd3855c08a14c5.tar.gz volse-hubzilla-ea0ab6fbac0dc317eb2e81abedbd3855c08a14c5.tar.bz2 volse-hubzilla-ea0ab6fbac0dc317eb2e81abedbd3855c08a14c5.zip |
poco should now be spec compliant
Diffstat (limited to 'include')
-rw-r--r-- | include/template_processor.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/template_processor.php b/include/template_processor.php index 63d75eaa4..25f7703a2 100644 --- a/include/template_processor.php +++ b/include/template_processor.php @@ -165,17 +165,17 @@ $this->r = $r; $this->search = array(); $this->replace = array(); - + $this->_build_replace($r, ""); #$s = str_replace(array("\n","\r"),array("§n§","§r§"),$s); $s = $this->_build_nodes($s); + $s = preg_replace_callback('/\|\|([0-9]+)\|\|/', array($this, "_replcb_node"), $s); if ($s==Null) $this->_preg_error(); // remove comments block $s = preg_replace('/{#[^#]*#}/', "" , $s); - // replace strings recursively (limit to 10 loops) $os = ""; $count=0; while($os!=$s && $count<10){ |