From 4aac47de0337e18dd08646aa9932655d88746eed Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 3 Sep 2010 01:41:01 -0400 Subject: syntax error in exception string in discovery.php --- plugins/OStatus/lib/discovery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/OStatus/lib/discovery.php b/plugins/OStatus/lib/discovery.php index ed22b452f..04c672720 100644 --- a/plugins/OStatus/lib/discovery.php +++ b/plugins/OStatus/lib/discovery.php @@ -107,7 +107,7 @@ class Discovery } // @todo Needs i18n. - throw new Exception('Unable to find services for '. $id '.'); + throw new Exception('Unable to find services for '. $id . '.'); } public static function getService($links, $service) { -- cgit v1.2.3-54-g00ecf From 43b0c65a86dbbad1d436437c3b25ba64b01bba0d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 3 Sep 2010 11:57:33 -0700 Subject: 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(-) (limited to 'plugins') 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(); -- cgit v1.2.3-54-g00ecf