Fix output bug in DisqusPlugin -- 'Comments' link contents was in attributes instead of comments, which broke output and spewed errors

This commit is contained in:
Brion Vibber 2010-09-03 11:57:33 -07:00
parent 4aac47de03
commit 43b0c65a86
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ ENDOFSCRIPT;
$noticeUrl .= '#disqus_thread';
$noticeListItem->out->element(
'a', array('href' => $noticeUrl, 'class' => 'disqus_count', 'Comments')
'a', array('href' => $noticeUrl, 'class' => 'disqus_count'), 'Comments'
);
$noticeListItem->showNoticeOptions();