From 43b0c65a86dbbad1d436437c3b25ba64b01bba0d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 3 Sep 2010 11:57:33 -0700 Subject: [PATCH] Fix output bug in DisqusPlugin -- 'Comments' link contents was in attributes instead of comments, which broke output and spewed errors --- plugins/DisqusPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/DisqusPlugin.php b/plugins/DisqusPlugin.php index dc56f320c3..c07eaaabdd 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(); -- 2.39.5