Bug in Comments link of admin page
Posted: Wed Sep 21, 2005 2:28 pm
Hi all,
I am using serendipity 0.8 and my browser is IE and my OS is windows XP.
When I click on 'comments' of admin side bar..i get the comments list and for comments which are large, a 'view' link is appearing below it.
and when I click on that 'view', the comment is not expanding and also ,I am getting the following error on the status bar...
Error: Object does not support this property or method
I explored the serendipity/include/admin/comments.inc.php file and I did not find any mistake in the code that belonged to this
Is there anyting else I need to check this problem?? Is this problem existing only for me?? Can I have any nearing solution to this?? 
I am using serendipity 0.8 and my browser is IE and my OS is windows XP.
When I click on 'comments' of admin side bar..i get the comments list and for comments which are large, a 'view' link is appearing below it.
and when I click on that 'view', the comment is not expanding and also ,I am getting the following error on the status bar...
Error: Object does not support this property or method
I explored the serendipity/include/admin/comments.inc.php file and I did not find any mistake in the code that belonged to this
Code: Select all
<a href="#c<?php echo $rs['id'] ?>" onclick="toggle(<?php echo $rs['id'] ?>); return false;" title="<?php echo VIEW; ?>" class="serendipityIconLink"><img src="<?php echo serendipity_getTemplateFile('admin/img/zoom.png'); ?>" alt="<?php echo VIEW; ?>" /><span id="<?php echo $rs['id'] ?>_text"><?php echo VIEW ?></span></a>
function toggle(id) {
if ( document.getElementById(id + '_full').style.display == '' ) {
document.getElementById(id + '_full').style.display='none';
document.getElementById(id + '_summary').style.display='';
document.getElementById(id + '_text').innerHTML = '<?php echo VIEW ?>';
} else {
document.getElementById(id + '_full').style.display='';
document.getElementById(id + '_summary').style.display='none';
document.getElementById(id + '_text').innerHTML = '<?php echo HIDE ?>';
}
return false;
}