diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2018-09-27 18:07:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-27 18:07:49 +0200 |
commit | d9842314586c8f19c5c2e763b8e142aa00bd5469 (patch) | |
tree | afbbae1777528fe7b8f60034224771dbe015afb5 | |
parent | c367f95afa406bb2efe1225a622c448bb0c56f20 (diff) | |
parent | d6522c41feea912b73552ec5dc9cbfc8fe287740 (diff) | |
download | nextcloud-server-d9842314586c8f19c5c2e763b8e142aa00bd5469.tar.gz nextcloud-server-d9842314586c8f19c5c2e763b8e142aa00bd5469.zip |
Merge pull request #11416 from nextcloud/bugfix/11218/show-email-authtype-none
Show auth type "None" in email settings
-rw-r--r-- | settings/templates/settings/admin/additional-mail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/settings/admin/additional-mail.php b/settings/templates/settings/admin/additional-mail.php index 1e0b458f60f..0a708015968 100644 --- a/settings/templates/settings/admin/additional-mail.php +++ b/settings/templates/settings/admin/additional-mail.php @@ -96,7 +96,7 @@ if ($_['mail_smtpmode'] === 'qmail') { <p id="setting_smtpauth" <?php if ($_['mail_smtpmode'] !== 'smtp') print_unescaped(' class="hidden"'); ?>> <label for="mail_smtpauthtype"><?php p($l->t('Authentication method')); ?></label> - <select name="mail_smtpauthtype" id="mail_smtpauthtype'> + <select name="mail_smtpauthtype" id="mail_smtpauthtype"> <?php foreach ($mail_smtpauthtype as $authtype => $name): $selected = ''; if ($authtype == $_['mail_smtpauthtype']): |