Prevent Example-Theme from using invalid URLs

Signed-off-by: Marius Blüm <marius@lineone.io>
This commit is contained in:
Marius Blüm 2017-01-16 17:52:28 +01:00
parent 182f570b04
commit 5e2995923d
No known key found for this signature in database
GPG Key ID: B61FE4386FF3416F
1 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ class OC_Theme {
* @return string URL * @return string URL
*/ */
public function getiOSClientUrl() { 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 * @return string AppId
*/ */
public function getiTunesAppId() { public function getiTunesAppId() {
return '543672169'; return '1125420102';
} }
/** /**
@ -65,7 +65,7 @@ class OC_Theme {
* @return string URL * @return string URL
*/ */
public function getDocBaseUrl() { public function getDocBaseUrl() {
return 'https://docs.nextcloud.org'; return 'https://docs.nextcloud.com';
} }
/** /**