Posted: Tue Apr 26, 2005 9:05 pm
Shorshe, I just made another fix which should get rid of the foreach() error. Just replace
to
inside the plugin file.
About your smarty templating error: if you insert { and } tags into Serendipity templates you need to escape them, as they are recognized as Smarty tags usually.
You need to write {ldelim} and {rdelim} instead, see http://smarty.php.net/manual/en/language.escaping.php
Regards,
Garvin
Code: Select all
if ($plugins_left)
if ($plugins_right))
Code: Select all
if (is_array($plugins_left))
if (is_array($plugins_right))
About your smarty templating error: if you insert { and } tags into Serendipity templates you need to escape them, as they are recognized as Smarty tags usually.
You need to write {ldelim} and {rdelim} instead, see http://smarty.php.net/manual/en/language.escaping.php
Regards,
Garvin