Bernd Wurst commited on 2018-04-09 10:10:59
Zeige 1 geänderte Dateien mit 1 Einfügungen und 1 Löschungen.
... | ... |
@@ -58,7 +58,7 @@ if ($_GET['action'] == 'edit') |
58 | 58 |
system_failure("Sie haben ein leeres Passwort eingegeben!"); |
59 | 59 |
if ($_POST['password'] == '**********') |
60 | 60 |
$account['password'] = ''; |
61 |
- if (isset($_POST['mailbox']) && $_POST['mailbox'] != 'yes') |
|
61 |
+ if (!isset($_POST['mailbox']) || (isset($_POST['mailbox']) && $_POST['mailbox'] != 'yes')) |
|
62 | 62 |
{ |
63 | 63 |
$account['password'] = NULL; |
64 | 64 |
} |
65 | 65 |