This reply is over 8 months late but since I found this thread while searching for an answer to the problem I'll post the solution I found here for future searchers 🙂
For the interest of those also affected by this problem, the solution is to
edit template.inc and replace this line:
I found the following in the phpLib mailing list archive (searched via google):
http://www.phpbuilder.com/mail/phplib-list/2000112/0008.php
==================================
For the interest of those also affected by this problem, the solution is to
edit template.inc and replace this line:
$str = preg_replace($reg, "{$name}", $str);
with this one:
$str = preg_replace($reg, "\{$name}", $str);
It appears this is a quirk of PHP4, as mentioned in the TODO.
Regards,
Ollie
==================================
Hope that helps someone out :o)
Cheers,
Simon