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
This commit is contained in:
Evan Prodromou
2008-12-23 14:44:28 -05:00
parent 04ef1ba8ee
commit 7ad2f2a371
43 changed files with 383 additions and 3815 deletions

View File

@@ -199,7 +199,7 @@ class User extends Memcached_DataObject
if (!$id) {
common_log_db_error($profile, 'INSERT', __FILE__);
return FALSE;
return false;
}
$user = new User();
@@ -233,7 +233,7 @@ class User extends Memcached_DataObject
if (!$result) {
common_log_db_error($user, 'INSERT', __FILE__);
return FALSE;
return false;
}
# Everyone is subscribed to themself
@@ -247,7 +247,7 @@ class User extends Memcached_DataObject
if (!$result) {
common_log_db_error($subscription, 'INSERT', __FILE__);
return FALSE;
return false;
}
if ($email && !$user->email) {
@@ -261,7 +261,7 @@ class User extends Memcached_DataObject
$result = $confirm->insert();
if (!$result) {
common_log_db_error($confirm, 'INSERT', __FILE__);
return FALSE;
return false;
}
}