diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-12-23 14:44:28 -0500 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-12-23 14:44:28 -0500 |
commit | 7ad2f2a371eae2489330f30306cfcbb204411bae (patch) | |
tree | 860c4f8e3749bb180f5d287c6b8e5eb65ccea5f1 /lib/omb.php | |
parent | 04ef1ba8eee7a9e2a565d7b4b747ef607665d562 (diff) |
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
Diffstat (limited to 'lib/omb.php')
-rw-r--r-- | lib/omb.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/omb.php b/lib/omb.php index c07bedab5..f2dbef5ba 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -139,7 +139,7 @@ function omb_broadcast_remote_subscribers($notice) common_log(LOG_DEBUG, 'Posting to ' . $rp->postnoticeurl); if (omb_post_notice_keys($notice, $rp->postnoticeurl, $rp->token, $rp->secret)) { common_log(LOG_DEBUG, 'Finished to ' . $rp->postnoticeurl); - $posted[$rp->postnoticeurl] = TRUE; + $posted[$rp->postnoticeurl] = true; } else { common_log(LOG_DEBUG, 'Failed posting to ' . $rp->postnoticeurl); } @@ -208,7 +208,7 @@ function omb_post_notice_keys($notice, $postnoticeurl, $tk, $secret) $req->to_postdata(), array('User-Agent' => 'Laconica/' . LACONICA_VERSION)); - common_debug('Got HTTP result "'.print_r($result,TRUE).'"', __FILE__); + common_debug('Got HTTP result "'.print_r($result,true).'"', __FILE__); if ($result->status == 403) { # not authorized, don't send again common_debug('403 result, deleting subscription', __FILE__); @@ -241,7 +241,7 @@ function omb_broadcast_profile($profile) if ($rp) { if (!$updated[$rp->updateprofileurl]) { if (omb_update_profile($profile, $rp, $sub)) { - $updated[$rp->updateprofileurl] = TRUE; + $updated[$rp->updateprofileurl] = true; } } } @@ -293,7 +293,7 @@ function omb_update_profile($profile, $remote_profile, $subscription) $req->to_postdata(), array('User-Agent' => 'Laconica/' . LACONICA_VERSION)); - common_debug('Got HTTP result "'.print_r($result,TRUE).'"', __FILE__); + common_debug('Got HTTP result "'.print_r($result,true).'"', __FILE__); if ($result->status == 403) { # not authorized, don't send again common_debug('403 result, deleting subscription', __FILE__); |