0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

Set $reset_by_sms even if password reset is disabled

... to avoid an "undefined variable" warning
This commit is contained in:
Christian Boltz 2018-04-27 23:23:57 +02:00
parent 7c38bdd871
commit 24ad5cc3d8
No known key found for this signature in database
GPG Key ID: C6A682EA63C82F1C
2 changed files with 6 additions and 10 deletions

View File

@ -36,11 +36,9 @@ class AdminHandler extends PFAHandler {
$passwordReset = Config::read('forgotten_admin_password_reset');
if ($passwordReset) {
$reset_by_sms = 0;
if (Config::read('sms_send_function')) {
$reset_by_sms = 1;
}
$reset_by_sms = 0;
if ($passwordReset && Config::read('sms_send_function')) {
$reset_by_sms = 1;
}
$this->struct=array(

View File

@ -13,11 +13,9 @@ class MailboxHandler extends PFAHandler {
# init $this->struct, $this->db_table and $this->id_field
protected function initStruct() {
$passwordReset = Config::read('forgotten_user_password_reset');
if ($passwordReset) {
$reset_by_sms = 0;
if (Config::read('sms_send_function')) {
$reset_by_sms = 1;
}
$reset_by_sms = 0;
if ($passwordReset && Config::read('sms_send_function')) {
$reset_by_sms = 1;
}
$this->struct=array(