From: Diederik de Haas Date: Fri, 9 Nov 2012 23:58:03 +0000 (+0100) Subject: Fixed new checkstyle issues in util.php from build #1341. X-Git-Tag: v5.0.0alpha1~469^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f6daddadf5477a2676c00209e90b609b3d923425;p=nextcloud-server.git Fixed new checkstyle issues in util.php from build #1341. --- diff --git a/lib/util.php b/lib/util.php index 8574ec31d83..73b72bad1a5 100755 --- a/lib/util.php +++ b/lib/util.php @@ -592,14 +592,14 @@ class OC_Util { // try to connect to owncloud.org to see if http connections to the internet are possible. $connected = @fsockopen("www.owncloud.org", 80); - if ($connected){ + if ($connected) { fclose($connected); return true; }else{ // second try in case one server is down $connected = @fsockopen("apps.owncloud.com", 80); - if ($connected){ + if ($connected) { fclose($connected); return true; }else{