diff options
Diffstat (limited to 'actions/profilesettings.php')
-rw-r--r-- | actions/profilesettings.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/profilesettings.php b/actions/profilesettings.php index e98c84935..44243f310 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -80,7 +80,7 @@ class ProfilesettingsAction extends SettingsAction { # Some validation - if (!is_null($email) && !Validate::email($email, true)) { + if ($email && !Validate::email($email, true)) { $this->show_form(_t('Not a valid email address.')); return; } else if (!Validate::string($nickname, array('min_length' => 1, @@ -211,4 +211,4 @@ class ProfilesettingsAction extends SettingsAction { return $other->id != $user->id; } } -}
\ No newline at end of file +} |