diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-10-14 21:04:08 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-10-14 21:04:08 +0200 |
commit | 4af5b016cc0bb4e5f7e73a50d38e16d3c539bf5f (patch) | |
tree | 04ea8615a228fb252473bef72eb8b763e558ea80 /lib/updater.php | |
parent | 2c427f050e2bc263b5c4c2faabf73e3993f1d29d (diff) | |
download | nextcloud-server-4af5b016cc0bb4e5f7e73a50d38e16d3c539bf5f.tar.gz nextcloud-server-4af5b016cc0bb4e5f7e73a50d38e16d3c539bf5f.zip |
Whitespace cleanup
Diffstat (limited to 'lib/updater.php')
-rw-r--r-- | lib/updater.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/updater.php b/lib/updater.php index b3b289ef276..cb22da4f906 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -45,12 +45,12 @@ class OC_Updater{ // set a sensible timeout of 10 sec to stay responsive even if the update server is down. $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); $xml=@file_get_contents($url, 0, $ctx); if($xml==FALSE) { return array(); |