Merge remote branch 'statusnet/testing' into testing

This commit is contained in:
James Walker 2010-02-09 03:16:21 -05:00
commit 4c7ac503d4
2 changed files with 2 additions and 2 deletions

View File

@ -277,7 +277,7 @@ class EditApplicationAction extends OwnerDesignAction
function nameExists($name)
{
$newapp = Oauth_application::staticGet('name', $name);
if (!$newapp) {
if (empty($newapp)) {
return false;
} else {
return $newapp->id != $this->app->id;

View File

@ -290,7 +290,7 @@ class NewApplicationAction extends OwnerDesignAction
function nameExists($name)
{
$app = Oauth_application::staticGet('name', $name);
return ($app !== false);
return !empty($app);
}
}