We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97b8e6d commit 1368012Copy full SHA for 1368012
apps/settings/templates/settings/admin/additional-mail.php
@@ -127,12 +127,8 @@
127
<span class="icon-info" title="<?php p($l->t('Only applies when authentication is required')); ?>"></span>
128
</label>
129
<select name="mail_smtpauthtype" id="mail_smtpauthtype" disabled="disabled">
130
- <?php foreach ($mail_smtpauthtype as $authtype => $name):
131
- $selected = '';
132
- if ($authtype == $_['mail_smtpauthtype']):
133
- $selected = 'selected="selected"';
134
- endif; ?>
135
- <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>
136
<?php endforeach; ?>
137
</select>
138
0 commit comments