Passed
Push — development ( 92a808...c3b866 )
by Nils
04:34
created
sources/items.queries.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -968,7 +968,7 @@  discard block
 block discarded – undo
968 968
                     /*FOLDER */
969 969
                     if ($data['id_tree'] != $dataReceived['categorie']) {
970 970
                         // Get name of folders
971
-                        $dataTmp = DB::query("SELECT title FROM ".prefix_table("nested_tree")." WHERE id IN %li", array($data['id_tree'],$dataReceived['categorie']));
971
+                        $dataTmp = DB::query("SELECT title FROM ".prefix_table("nested_tree")." WHERE id IN %li", array($data['id_tree'], $dataReceived['categorie']));
972 972
 
973 973
                         logItems(
974 974
                             $dataReceived['id'],
@@ -2090,7 +2090,7 @@  discard block
 block discarded – undo
2090 2090
                         if (empty($path) === true) {
2091 2091
                             $path = htmlspecialchars(stripslashes(htmlspecialchars_decode($elem->title, ENT_QUOTES)), ENT_QUOTES).' ';
2092 2092
                         } else {
2093
-                            $path .= '→ ' . htmlspecialchars(stripslashes(htmlspecialchars_decode($elem->title, ENT_QUOTES)), ENT_QUOTES);
2093
+                            $path .= '→ '.htmlspecialchars(stripslashes(htmlspecialchars_decode($elem->title, ENT_QUOTES)), ENT_QUOTES);
2094 2094
                         }
2095 2095
                     }
2096 2096
                     // Build text to show user
@@ -4593,7 +4593,7 @@  discard block
 block discarded – undo
4593 4593
         if (empty($path) === true) {
4594 4594
             $path = htmlspecialchars(stripslashes(htmlspecialchars_decode($elem->title, ENT_QUOTES)), ENT_QUOTES).' ';
4595 4595
         } else {
4596
-            $path .= '→ ' . htmlspecialchars(stripslashes(htmlspecialchars_decode($elem->title, ENT_QUOTES)), ENT_QUOTES);
4596
+            $path .= '→ '.htmlspecialchars(stripslashes(htmlspecialchars_decode($elem->title, ENT_QUOTES)), ENT_QUOTES);
4597 4597
         }
4598 4598
     }
4599 4599
     // Build text to show user
Please login to merge, or discard this patch.