diff options
author | Brion Vibber <brion@pobox.com> | 2010-09-03 11:57:33 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-09-03 11:57:33 -0700 |
commit | 43b0c65a86dbbad1d436437c3b25ba64b01bba0d (patch) | |
tree | 69b7413d206cd92632b57521b8009ed4f475886a /plugins/DisqusPlugin.php | |
parent | 4aac47de0337e18dd08646aa9932655d88746eed (diff) |
Fix output bug in DisqusPlugin -- 'Comments' link contents was in attributes instead of comments, which broke output and spewed errors
Diffstat (limited to 'plugins/DisqusPlugin.php')
-rw-r--r-- | plugins/DisqusPlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DisqusPlugin.php b/plugins/DisqusPlugin.php index dc56f320c..c07eaaabd 100644 --- a/plugins/DisqusPlugin.php +++ b/plugins/DisqusPlugin.php @@ -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(); |