check existence of args not booleanness

darcs-hash:20080618055657-84dde-269a234dd68867ca4f159031fe206e31131ef108.gz
This commit is contained in:
Evan Prodromou 2008-06-18 01:56:57 -04:00
parent cba4168d62
commit 4000840243
1 changed files with 2 additions and 2 deletions

View File

@ -28,9 +28,9 @@ class FinishopenidloginAction extends Action {
if (common_logged_in()) {
common_user_error(_t('Already logged in.'));
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if ($this->boolean('create')) {
if ($this->arg('create')) {
$this->create_new_user();
} else if ($this->boolean('connect')) {
} else if ($this->arg('connect')) {
$this->connect_user();
} else {
common_debug(print_r($this->args, true), __FILE__);