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.
remotes/origin/ldap_group_count
Lukas Reschke 11 years ago
parent d962f18e3f
commit 5679f5c37e
  1. 2
      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 = "";

Loading…
Cancel
Save