I’ve just upgraded from EE 1.52 to EE 1.6, and I’m getting the value ‘0’ appearing throughout my site in place of content.
Two examples are:
<title>{exp:weblog:info weblog="{my_weblog}"}{blog_title}{/exp:weblog:info}</title>
This was working fine prior to the upgrade, and was not changed. It now outputs:
<title>0</title>
Also, a few plugins seeming to be doing the same thing. One example (posted here) is doing the same sort of behaviour:
{exp:static_page_root_path}
<li class="{short_name} {current}"><a href="{url_title}" title="{title}">{title}</a></li>
{/exp:static_page_root_path}
now produces only:
<ul>
0
</ul>
Furthermore, if I edit the plugin code and add the following:
function Static_page_root_path ( $str = '' )
{
echo "AAA";
$this->return_data = 'AAA';
exit();
It has no affect - I still get the hash string result. It doesn’t look like the plugin code is even being executed.
Any ideas?
