From 7ad2f2a371eae2489330f30306cfcbb204411bae Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Dec 2008 14:44:28 -0500 Subject: TRUE More PEAR coding standards global changes. Here, I've changed all instances of TRUE to true and FALSE to false. darcs-hash:20081223194428-84dde-cb1a1e6f679acd68e864545c4d4dd8752d6a6257.gz --- actions/foaf.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actions/foaf.php') diff --git a/actions/foaf.php b/actions/foaf.php index 893e2a861..27548bfff 100644 --- a/actions/foaf.php +++ b/actions/foaf.php @@ -122,7 +122,7 @@ class FoafAction extends Action { $other = User::staticGet('id', $sub->subscribed); } if (!$other) { - common_debug('Got a bad subscription: '.print_r($sub,TRUE)); + common_debug('Got a bad subscription: '.print_r($sub,true)); continue; } common_element('knows', array('rdf:resource' => $other->uri)); @@ -144,7 +144,7 @@ class FoafAction extends Action { $other = User::staticGet('id', $sub->subscriber); } if (!$other) { - common_debug('Got a bad subscription: '.print_r($sub,TRUE)); + common_debug('Got a bad subscription: '.print_r($sub,true)); continue; } if (array_key_exists($other->uri, $person)) { -- cgit v1.2.3-54-g00ecf