diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 11:47:01 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 11:47:01 -0400 |
commit | 3b14b7901c65144835d74b712279d0492c267c0c (patch) | |
tree | 9ce2b2053e00cda38030dbc0e2cba4c1db33c628 /actions/all.php | |
parent | ffc729453d487941e8a001d8a112c6509c892bc6 (diff) |
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
Diffstat (limited to 'actions/all.php')
-rw-r--r-- | actions/all.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/all.php b/actions/all.php index 8efaa5a82..f1a2229f0 100644 --- a/actions/all.php +++ b/actions/all.php @@ -17,7 +17,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -if (!defined('LACONICA')) { exit(1) } +if (!defined('LACONICA')) { exit(1); } class AllAction extends ShowstreamAction { |