diff options
author | Joachim Sokolowski <github@sokolowski.org> | 2016-06-21 17:27:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-21 17:27:02 +0200 |
commit | 235e2fc68e0e3d93f4d73324feab9ca5c68e0c51 (patch) | |
tree | 3909f0edde9a78b9ef7d6f0ec7c3b1f803d48436 /themes | |
parent | 638a7130085eed040f4764de096485a5c574badd (diff) | |
download | nextcloud-server-235e2fc68e0e3d93f4d73324feab9ca5c68e0c51.tar.gz nextcloud-server-235e2fc68e0e3d93f4d73324feab9ca5c68e0c51.zip |
default.php for nextcloud
changing it to nextcloud
Diffstat (limited to 'themes')
-rw-r--r-- | themes/example/defaults.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/themes/example/defaults.php b/themes/example/defaults.php index fe532d5b67f..1731097b476 100644 --- a/themes/example/defaults.php +++ b/themes/example/defaults.php @@ -2,7 +2,7 @@ /** * @author Björn Schießle <schiessle@owncloud.com> * @author Jan-Christoph Borchardt, http://jancborchardt.net - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify @@ -25,7 +25,7 @@ class OC_Theme { * @return string URL */ public function getBaseUrl() { - return 'https://owncloud.org'; + return 'https://nextcloud.com'; } /** @@ -33,7 +33,7 @@ class OC_Theme { * @return string URL */ public function getSyncClientUrl() { - return 'https://owncloud.org/install'; + return 'https://nextcloud.com/install'; } /** @@ -57,7 +57,7 @@ class OC_Theme { * @return string URL */ public function getAndroidClientUrl() { - return 'https://play.google.com/store/apps/details?id=com.owncloud.android'; + return 'https://play.google.com/store/apps/details?id=com.nextcloud.client'; } /** @@ -65,7 +65,7 @@ class OC_Theme { * @return string URL */ public function getDocBaseUrl() { - return 'https://doc.owncloud.org'; + return 'https://docs.nextcloud.org'; } /** @@ -139,7 +139,7 @@ class OC_Theme { } public function buildDocLinkToKey($key) { - return $this->getDocBaseUrl() . '/server/8.0/go.php?to=' . $key; + return $this->getDocBaseUrl() . '/server/9/go.php?to=' . $key; } |