Hi,
While building a template for the Beta 9.9.5 that I recently downloaded,
I noticed that the Categories and Latest comments sidebar modules were throwing a Javascript error on clicking the button that collapses (or expands) them.
Looking at the problem a little closer, I noticed that the
onclick="new Effect.toggle('panelID','blind', ....
handler for both of these modules was not set properly.
While the panelID for Latest comments was empty, that of the categories was set to "sl" instead of the required "cats".
To fix the Latest Comments, I had to add this line of code to sidebar_comments.php-
$main_smarty->assign('ss_toggle_id', 'latcomments');
To fix categories, I had to amend sidebar_modules/categories.tpl, so that the line
new Effect.toggle('sl','blind',
now became
new Effect.toggle('cats','blind',
Hope this helps someone.
Regards
KK





Linear Mode




