From e921c82d18da091067516e75e07b6768c01fb606 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Philipp=20Sch=C3=BCle?= Date: Thu, 30 Apr 2015 20:12:43 +0200 Subject: [PATCH] fixes STARTTLS config options for LDAP MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I8e21b45a228e150f0d395e2d71551eb121ef3915 Reviewed-on: http://gerrit.tine20.com/customers/1900 Tested-by: Jenkins CI (http://ci.tine20.com/) Reviewed-by: Philipp Schüle Tested-by: Philipp Schüle --- tine20/Setup/js/AuthenticationPanel.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tine20/Setup/js/AuthenticationPanel.js b/tine20/Setup/js/AuthenticationPanel.js index 286c951..93b1a0e 100644 --- a/tine20/Setup/js/AuthenticationPanel.js +++ b/tine20/Setup/js/AuthenticationPanel.js @@ -4,7 +4,7 @@ * @package Setup * @license http://www.gnu.org/licenses/agpl.html AGPL Version 3 * @author Cornelius Weiss - * @copyright Copyright (c) 2009-2012 Metaways Infosystems GmbH (http://www.metaways.de) + * @copyright Copyright (c) 2009-2015 Metaways Infosystems GmbH (http://www.metaways.de) * */ @@ -332,7 +332,7 @@ Tine.Setup.AuthenticationPanel = Ext.extend(Tine.Tinebase.widgets.form.ConfigPan Ext.applyIf({ name: 'authentication_Ldap_useStartTls', fieldLabel: this.app.i18n._('Start TLS'), - store: [[['0', this.app.i18n._('No'), '1', this.app.i18n._('Yes')]]], + store: [['0', this.app.i18n._('No')], ['1', this.app.i18n._('Yes')]], value: '0' }, commonComboConfig), { @@ -599,7 +599,7 @@ Tine.Setup.AuthenticationPanel = Ext.extend(Tine.Tinebase.widgets.form.ConfigPan Ext.applyIf({ name: 'accounts_' + type + 'useStartTls', fieldLabel: this.app.i18n._('Start TLS'), - store: [[['0', this.app.i18n._('No'), '1', this.app.i18n._('Yes')]]], + store: [['0', this.app.i18n._('No')], ['1', this.app.i18n._('Yes')]], value: '0' }, commonComboConfig), Ext.applyIf({ -- 2.7.4