diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-23 15:07:14 -0700 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-23 15:07:14 -0700 |
commit | f112d8cd69ed7080b5bba6ad259cb77802e49f56 (patch) | |
tree | 90308bee0b447f2daf1b6a545b023178f6e0544f /lib/updater.php | |
parent | 9185cd5daef7babd748dec9f15b9b3f3ce90207c (diff) | |
parent | 2d61f0345297a92d23751d3228b74c6dca94d1e5 (diff) | |
download | nextcloud-server-f112d8cd69ed7080b5bba6ad259cb77802e49f56.tar.gz nextcloud-server-f112d8cd69ed7080b5bba6ad259cb77802e49f56.zip |
Merge pull request #75 from fmms/master
More Checkstyle cleanup
Diffstat (limited to 'lib/updater.php')
-rw-r--r-- | lib/updater.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/updater.php b/lib/updater.php index cb22da4f906..483570b050a 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -52,7 +52,7 @@ class OC_Updater{ ) ); $xml=@file_get_contents($url, 0, $ctx); - if($xml==FALSE) { + if($xml==false) { return array(); } $data=@simplexml_load_string($xml); |