diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-07-06 17:05:38 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-07-06 17:05:38 +0200 |
commit | 9cd7ecd5022ea799a18f58c890b2292b4e1e3c77 (patch) | |
tree | 159878c1e39605eff1c92db7cef2f8d42a09dc4c /lib/legacy | |
parent | 58f473d734373047db585d3b2926d33aa326f5ab (diff) | |
download | nextcloud-server-9cd7ecd5022ea799a18f58c890b2292b4e1e3c77.tar.gz nextcloud-server-9cd7ecd5022ea799a18f58c890b2292b4e1e3c77.zip |
Updater: pass update url as argument to update check
Diffstat (limited to 'lib/legacy')
-rw-r--r-- | lib/legacy/updater.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/legacy/updater.php b/lib/legacy/updater.php index 8a769a2f14b..eea7bb129cf 100644 --- a/lib/legacy/updater.php +++ b/lib/legacy/updater.php @@ -9,6 +9,6 @@ class OC_Updater { public static function check() { $updater = new \OC\Updater(); - return $updater->check(); + return $updater->check('http://apps.owncloud.com/updater.php'); } } |