Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-07-22 13:55:20 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-07-22 13:55:20 +0400
commit840e96cda39b97dc0c42b52946f0e98c62df3bf4 (patch)
treef8d8961af7b96b013289d7a0c1018ee40a996aea /settings/admin.php
parent934f2e94a30e21bbd0c87f347bb05de3437f66db (diff)
parent342a54bf7b31fe21362bac59cfa80a5d30ce9362 (diff)
Merge branch 'master' into disable-anon-upload-master
Conflicts: settings/templates/admin.php
Diffstat (limited to 'settings/admin.php')
-rwxr-xr-xsettings/admin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/admin.php b/settings/admin.php
index cc30c70d474..10e239204f2 100755
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -32,7 +32,7 @@ $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundj
$tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes'));
// Check if connected using HTTPS
-if (OC_Request::serverProtocol() == 'https') {
+if (OC_Request::serverProtocol() === 'https') {
$connectedHTTPS = true;
} else {
$connectedHTTPS = false;