Skip to content

Commit

Permalink
Merge pull request #3096 from nextcloud/update-theme-urls
Browse files Browse the repository at this point in the history
Prevent Example-Theme from using invalid URLs
  • Loading branch information
MorrisJobke authored Jan 16, 2017
2 parents 182f570 + 5e29959 commit 250b711
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions themes/example/defaults.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ public function getSyncClientUrl() {
* @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';
}

/**
* Returns the AppId for the App Store for the iOS Client
* @return string AppId
*/
public function getiTunesAppId() {
return '543672169';
return '1125420102';
}

/**
Expand All @@ -65,7 +65,7 @@ public function getAndroidClientUrl() {
* @return string URL
*/
public function getDocBaseUrl() {
return 'https://docs.nextcloud.org';
return 'https://docs.nextcloud.com';
}

/**
Expand Down

0 comments on commit 250b711

Please sign in to comment.