Merge pull request #37391 from nextcloud/backport/37340/stable26

[stable26] fix(mailer): remove value comparison for smtp_authtype as there is only one option
This commit is contained in:
Simon L 2023-03-27 12:31:31 +02:00 committed by GitHub
commit 02f1ebab09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>