Passed
Push — master ( ef5f7e...93b22a )
by Tim
03:23 queued 37s
created
www/login.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,5 +16,5 @@
 block discarded – undo
16 16
     header('HTTP/1.0 500 Internal Server Error');
17 17
     header('Content-Type: text/plain; charset=utf-8');
18 18
     echo "ERROR\n";
19
-    echo $e->getMessage() . "\n";
19
+    echo $e->getMessage()."\n";
20 20
 }
Please login to merge, or discard this patch.
www/logout.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,5 +17,5 @@
 block discarded – undo
17 17
     header('HTTP/1.0 500 Internal Server Error');
18 18
     header('Content-Type: text/plain; charset=utf-8');
19 19
     echo "ERROR\n";
20
-    echo $e->getMessage() . "\n";
20
+    echo $e->getMessage()."\n";
21 21
 }
Please login to merge, or discard this patch.
www/attributes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     $attributes = $as->getAttributes();
16 16
 
17 17
     header('Content-Type: text/plain; charset=utf-8');
18
-    echo "OK\n" ;
18
+    echo "OK\n";
19 19
     foreach ($attributes as $name => $values) {
20 20
         echo "$name\n";
21 21
         foreach ($values as $value) {
@@ -26,5 +26,5 @@  discard block
 block discarded – undo
26 26
     header('HTTP/1.0 500 Internal Server Error');
27 27
     header('Content-Type: text/plain; charset=utf-8');
28 28
     echo "ERROR\n";
29
-    echo $e->getMessage() . "\n";
29
+    echo $e->getMessage()."\n";
30 30
 }
Please login to merge, or discard this patch.