diff options
author | friendica <info@friendica.com> | 2012-03-17 18:15:36 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-17 18:15:36 -0700 |
commit | 67fd539f53756723d844dd204639146587f5bb76 (patch) | |
tree | 23a8a0823445735752668c0d93ef1d5dee363a95 /include/template_processor.php | |
parent | 94fac6d76725042fc176aaebd2af721ab1540ff7 (diff) | |
download | volse-hubzilla-67fd539f53756723d844dd204639146587f5bb76.tar.gz volse-hubzilla-67fd539f53756723d844dd204639146587f5bb76.tar.bz2 volse-hubzilla-67fd539f53756723d844dd204639146587f5bb76.zip |
bug #337, call template_unescape() only at the end of template processing
Diffstat (limited to 'include/template_processor.php')
-rwxr-xr-x | include/template_processor.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/template_processor.php b/include/template_processor.php index 93bf391c5..4c317efe1 100755 --- a/include/template_processor.php +++ b/include/template_processor.php @@ -203,7 +203,7 @@ $os=$s; $count++; $s = $this->var_replace($s); } - return template_unescape($s); + return $s; } } |