aboutsummaryrefslogtreecommitdiffstats
path: root/include/template_processor.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-15 16:36:49 -0700
committerFriendika <info@friendika.com>2011-05-15 16:36:49 -0700
commit730322ee5fd1b04a026ce6d0bafae9079f307a4b (patch)
tree45dfb0056abb56fe3fafd3184cdd358761e78166 /include/template_processor.php
parent45b9bd96baa12c426b1a0a629e81908a59f149d9 (diff)
downloadvolse-hubzilla-730322ee5fd1b04a026ce6d0bafae9079f307a4b.tar.gz
volse-hubzilla-730322ee5fd1b04a026ce6d0bafae9079f307a4b.tar.bz2
volse-hubzilla-730322ee5fd1b04a026ce6d0bafae9079f307a4b.zip
bug #70 - error messages on group deletion, warning cleanup
Diffstat (limited to 'include/template_processor.php')
-rw-r--r--include/template_processor.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/template_processor.php b/include/template_processor.php
index d431831cb..efdfbaecb 100644
--- a/include/template_processor.php
+++ b/include/template_processor.php
@@ -128,7 +128,7 @@
#$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);
- $s = str_replace($this->search,$this->replace,$s);
+ $s = str_replace($this->search,$this->replace, (string) $s);
return $s;
}