Passed
Push — master ( e34333...86363a )
by Rakesh
42s queued 10s
created
lib/move_to_picasa.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -106,10 +106,11 @@
 block discarded – undo
106 106
 }
107 107
 
108 108
 
109
-if ( isset( $_GET['ajax'] ) )
109
+if ( isset( $_GET['ajax'] ) ) {
110 110
 	echo $response;
111
-else
111
+} else {
112 112
 	header('location:../index.php?response='.$response);
113
+}
113 114
 
114 115
 
115 116
 ?>
Please login to merge, or discard this patch.
zipper.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,9 @@
 block discarded – undo
23 23
 				$file = str_replace('\\', '/', $file);
24 24
 
25 25
 				// Ignore "." and ".." folders
26
-				if (in_array(substr($file, strrpos($file, '/') + 1), array('.', '..')))
27
-					continue;
26
+				if (in_array(substr($file, strrpos($file, '/') + 1), array('.', '..'))) {
27
+									continue;
28
+				}
28 29
 
29 30
 				$file = realpath($file);
30 31
 
Please login to merge, or discard this patch.