- Fixes another 'xtemplate.inc removes "$xx" from content'. Patch by Ax.

4.4.x
Dries Buytaert 2003-12-15 20:27:56 +00:00
parent f229a8c04c
commit eadda128aa
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ function parse ($bname) {
} }
} else { } else {
$var=trim($var); $var=trim($var);
$copy=preg_replace("/\{".$v."\}/","$var",$copy); $copy=str_replace("\{$v}","$var",$copy);
} }
} else { } else {
$var=$this->VARS; $var=$this->VARS;