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:
authorLukas Reschke <lukas@statuscode.ch>2014-04-07 00:04:14 +0400
committerLukas Reschke <lukas@statuscode.ch>2014-04-07 00:04:14 +0400
commit5679f5c37e38635c2f981774e1decad9d4e486c8 (patch)
tree918662ca93cc7e978a6ca994c29f6621fe4eb09a /lib/private/defaults.php
parentd962f18e3f82ac1e65a67cee1054c02aafb7a388 (diff)
Remove wrong whitespace from URL and use HTTPS
The whitespace caused the generated links to begin with a whitespace (e.g. `<a href=" http://owncloud.org/sync-clients/" target="_blank">`) Additionally I switched the link to HTTPS.
Diffstat (limited to 'lib/private/defaults.php')
-rw-r--r--lib/private/defaults.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/defaults.php b/lib/private/defaults.php
index 79be211b82f..b9925cf2f92 100644
--- a/lib/private/defaults.php
+++ b/lib/private/defaults.php
@@ -30,7 +30,7 @@ class OC_Defaults {
$this->defaultName = "ownCloud"; /* short name, used when referring to the software */
$this->defaultTitle = "ownCloud"; /* can be a longer name, for titles */
$this->defaultBaseUrl = "http://owncloud.org";
- $this->defaultSyncClientUrl = " http://owncloud.org/sync-clients/";
+ $this->defaultSyncClientUrl = "https://owncloud.org/sync-clients/";
$this->defaultDocBaseUrl = "http://doc.owncloud.org";
$this->defaultSlogan = $this->l->t("web services under your control");
$this->defaultLogoClaim = "";