From 3b14b7901c65144835d74b712279d0492c267c0c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 17 May 2008 11:47:01 -0400 Subject: fixes to make it all lint Ran everything through php -l, found out that it didn't compile. So: fixed the am-I-running-in-Laconica check at the top of each file. Some syntax fixes in shownotice, showstream, common. darcs-hash:20080517154701-84dde-8d38da89c5b9cb3b40704adb04a4de880c204181.gz --- actions/showstream.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actions/showstream.php') diff --git a/actions/showstream.php b/actions/showstream.php index 8272e1038..c477ae29b 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -if (!defined('LACONICA')) { exit(1) } +if (!defined('LACONICA')) { exit(1); } define('SUBSCRIPTIONS_PER_ROW', 5); define('SUBSCRIPTIONS', 80); @@ -169,7 +169,7 @@ class ShowstreamAction extends StreamAction { } common_element('a', array('href' => common_local_url('subscriptions', - array('profile' => $profile->nickname)) + array('profile' => $profile->nickname)), 'class' => 'moresubscriptions'), _t('All subscriptions')); -- cgit v1.2.3-54-g00ecf