Completed
Push — development ( 2c05ec...a5a40b )
by Nils
07:16
created
install/js/crypt/aes.class.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,9 @@
 block discarded – undo
50 50
      */
51 51
     private static function addRoundKey($state, $w, $rnd, $Nb) {  // xor Round Key into state S [é5.1.4]
52 52
     for ($r = 0; $r < 4; $r++) {
53
-        for ($c = 0; $c < $Nb; $c++) $state[$r][$c] ^= $w[$rnd * 4 + $c][$r];
53
+        for ($c = 0; $c < $Nb; $c++) {
54
+            $state[$r][$c] ^= $w[$rnd * 4 + $c][$r];
55
+        }
54 56
     }
55 57
 
56 58
     return $state;
Please login to merge, or discard this patch.
includes/libraries/Encryption/PBKDF2/PasswordHash.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -105,6 +105,7 @@
 block discarded – undo
105 105
  */
106 106
 /**
107 107
  * @param integer $key_length
108
+ * @param integer $count
108 109
  */
109 110
 function pbkdf2($algorithm, $password, $salt, $count, $key_length, $raw_output = false)
110 111
 {
Please login to merge, or discard this patch.
sources/main.queries.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1160,7 +1160,7 @@
 block discarded – undo
1160 1160
             break;
1161 1161
         }
1162 1162
 
1163
-        try{
1163
+        try {
1164 1164
             unlink($_POST['filename']);
1165 1165
         }
1166 1166
 
Please login to merge, or discard this patch.
sources/upload/upload.attachments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
 
219 219
 // Create target dir
220 220
 if (!file_exists($targetDir)) {
221
-    try{
221
+    try {
222 222
         mkdir($targetDir);
223 223
     }
224 224
 }
Please login to merge, or discard this patch.