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 /scripts/xmppconfirmhandler.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 'scripts/xmppconfirmhandler.php')
-rwxr-xr-x | scripts/xmppconfirmhandler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xmppconfirmhandler.php b/scripts/xmppconfirmhandler.php index b059149bc..1eb932330 100755 --- a/scripts/xmppconfirmhandler.php +++ b/scripts/xmppconfirmhandler.php @@ -110,7 +110,7 @@ class XmppConfirmHandler extends XmppQueueHandler { $confirm->address_type = 'jabber'; $confirm->orderBy('modified DESC'); $confirm->limit(1); - if ($confirm->find(TRUE)) { + if ($confirm->find(true)) { $this->log(LOG_INFO, 'Claiming confirmation for ' . $confirm->address); # working around some weird DB_DataObject behaviour $confirm->whereAdd(''); # clears where stuff |