diff options
author | Anna Larch <anna@nextcloud.com> | 2023-03-22 12:35:51 +0100 |
---|---|---|
committer | Anna (Rebase PR Action) <miaulalala@users.noreply.github.com> | 2023-03-24 10:26:04 +0000 |
commit | 1368012d97dcad5e6e1ae0a674d5c6ba43559783 (patch) | |
tree | 7f75153d6fdf00a4a5fc07e4253448fd6ac977f1 /apps/settings | |
parent | 97b8e6d2a388cd08bd83ee08b1d322b9e813387a (diff) | |
download | nextcloud-server-1368012d97dcad5e6e1ae0a674d5c6ba43559783.tar.gz nextcloud-server-1368012d97dcad5e6e1ae0a674d5c6ba43559783.zip |
fix(mailer): check if authentication is neccessary
Signed-off-by: Anna Larch <anna@nextcloud.com>
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/templates/settings/admin/additional-mail.php | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/apps/settings/templates/settings/admin/additional-mail.php b/apps/settings/templates/settings/admin/additional-mail.php index 64e57e87ee9..55c58f4caa5 100644 --- a/apps/settings/templates/settings/admin/additional-mail.php +++ b/apps/settings/templates/settings/admin/additional-mail.php @@ -127,12 +127,8 @@ $mail_sendmailmode = [ <span class="icon-info" title="<?php p($l->t('Only applies when authentication is required')); ?>"></span> </label> <select name="mail_smtpauthtype" id="mail_smtpauthtype" disabled="disabled"> - <?php foreach ($mail_smtpauthtype as $authtype => $name): - $selected = ''; - if ($authtype == $_['mail_smtpauthtype']): - $selected = 'selected="selected"'; - endif; ?> - <option value="<?php p($authtype) ?>" <?php p($selected) ?>><?php p($name) ?></option> + <?php foreach ($mail_smtpauthtype as $authtype => $name): ?> + <option value="<?php p($authtype) ?>"><?php p($name) ?></option> <?php endforeach; ?> </select> |