Merge remote branch 'statusnet/testing' into testing
This commit is contained in:
commit
4c7ac503d4
@ -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;
|
||||
|
@ -290,7 +290,7 @@ class NewApplicationAction extends OwnerDesignAction
|
||||
function nameExists($name)
|
||||
{
|
||||
$app = Oauth_application::staticGet('name', $name);
|
||||
return ($app !== false);
|
||||
return !empty($app);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user