Test Failed
Push — master ( 2a8a67...5ddd1f )
by Alexey
04:25
created
system/modules/Db/objects/Mysql/Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -442,7 +442,7 @@
 block discarded – undo
442 442
         foreach ($query['params'] as $param) {
443 443
             $prepare->bindValue($pos++, $param, is_null($param) ? \PDO::PARAM_NULL : \PDO::PARAM_STR);
444 444
         }
445
-        $key = \App::$cur->log->start('query: '.$query['query']);
445
+        $key = \App::$cur->log->start('query: ' . $query['query']);
446 446
         $prepare->execute();
447 447
         \App::$cur->log->end($key);
448 448
         $this->curInstance->lastQuery = $query;
Please login to merge, or discard this patch.
system/modules/View/View.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -309,10 +309,10 @@
 block discarded – undo
309 309
             $hash = md5($hash);
310 310
             ?>
311 311
             <script>
312
-              var hash = '<?=$hash;?>';
313
-              var files = '<?=http_build_query(['files' => array_keys($urls)]);?>';
312
+              var hash = '<?=$hash; ?>';
313
+              var files = '<?=http_build_query(['files' => array_keys($urls)]); ?>';
314 314
               var timeHash = '<?=$timeMd5?>';
315
-              var id = '<?=$id;?>';
315
+              var id = '<?=$id; ?>';
316 316
 
317 317
               setInterval(function () {
318 318
                 // 1. Создаём новый объект XMLHttpRequest
Please login to merge, or discard this patch.