summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-01-16 11:42:08 -0600
committerGitHub <noreply@github.com>2017-01-16 11:42:08 -0600
commit250b7119b7439361b7e48c18a75d47e344f3d890 (patch)
tree593618bb8adcf1e8188e4647d061ba3827359c88
parent182f570b046765fdb57d7eb513fe8c4b2490ed8f (diff)
parent5e2995923d5d612948c4444971d21ec23e4324f8 (diff)
downloadnextcloud-server-250b7119b7439361b7e48c18a75d47e344f3d890.tar.gz
nextcloud-server-250b7119b7439361b7e48c18a75d47e344f3d890.zip
Merge pull request #3096 from nextcloud/update-theme-urls
Prevent Example-Theme from using invalid URLs
-rw-r--r--themes/example/defaults.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/example/defaults.php b/themes/example/defaults.php
index 25ec350ed1b..1a2389d0bc2 100644
--- a/themes/example/defaults.php
+++ b/themes/example/defaults.php
@@ -41,7 +41,7 @@ class OC_Theme {
* @return string URL
*/
public function getiOSClientUrl() {
- return 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8';
+ return 'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8';
}
/**
@@ -49,7 +49,7 @@ class OC_Theme {
* @return string AppId
*/
public function getiTunesAppId() {
- return '543672169';
+ return '1125420102';
}
/**
@@ -65,7 +65,7 @@ class OC_Theme {
* @return string URL
*/
public function getDocBaseUrl() {
- return 'https://docs.nextcloud.org';
+ return 'https://docs.nextcloud.com';
}
/**