Code fixes needed:
engine.php line 1098
$out = strtr($out, $BOLTreplaceTable['$zone']);
replace with:
$out = $page;
if (is_array($BOLTreplaceTable[$zone]))
$out = strtr($out, $BOLTreplaceTable[$zone]);
engine.php line 1512
$out = strtr($out, $BOLTreplaceTable['HTML']);
replace with:
if (is_array($BOLTreplaceTable['HTML']))
$out = strtr($out, $BOLTreplaceTable['HTML']);
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"BoltWire" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/boltwire?hl=en
-~----------~----~----~----~------~----~------~--~---