Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-07-30 13:39:14 +0400
committerMorris Jobke <hey@morrisjobke.de>2014-07-30 13:39:14 +0400
commitf97588c26a439b7ef2b6ad5130da2dc9899967fe (patch)
treedbc9216b1867609af306b0129c87bbac29908312 /wizard.php
parent774afac9c440ca5899a93bc06c7f0e8d4eae29fe (diff)
Fix wrong uppercase
Diffstat (limited to 'wizard.php')
-rw-r--r--wizard.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard.php b/wizard.php
index 5a44d491..0811d373 100644
--- a/wizard.php
+++ b/wizard.php
@@ -30,7 +30,7 @@ $defaults = new \OCP\Defaults();
//links to clients
$clients = array(
'desktop' => OCP\Config::getSystemValue('customclient_desktop', $defaults->getSyncClientUrl()),
- 'android' => OCP\Config::getSystemValue('customclient_android', $defaults->getAndroidClientURL()),
+ 'android' => OCP\Config::getSystemValue('customclient_android', $defaults->getAndroidClientUrl()),
'ios' => OCP\Config::getSystemValue('customclient_ios', $defaults->getiOSClientUrl())
);