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.
This commit is contained in:
parent
d962f18e3f
commit
5679f5c37e
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue