diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-04-06 22:04:14 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-04-06 22:04:14 +0200 |
commit | 5679f5c37e38635c2f981774e1decad9d4e486c8 (patch) | |
tree | 918662ca93cc7e978a6ca994c29f6621fe4eb09a /lib/private/defaults.php | |
parent | d962f18e3f82ac1e65a67cee1054c02aafb7a388 (diff) | |
download | nextcloud-server-5679f5c37e38635c2f981774e1decad9d4e486c8.tar.gz nextcloud-server-5679f5c37e38635c2f981774e1decad9d4e486c8.zip |
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.php | 2 |
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 = ""; |