Completed
Push — master ( f81666...55a9f3 )
by Alexey
05:42
created
system/objects/IdnaConvert.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
             break;
261 261
         case 'ucs4_string':
262 262
            return $this->_ucs4_to_ucs4_string($this->_utf8_to_ucs4($return));
263
-           break;
263
+            break;
264 264
         case 'ucs4_array':
265 265
             return $this->_utf8_to_ucs4($return);
266 266
             break;
@@ -316,8 +316,8 @@  discard block
 block discarded – undo
316 316
             case 0x40:
317 317
                 // Neither email addresses nor URLs allowed in strict mode
318 318
                 if ($this->_strict_mode) {
319
-                   $this->_error('Neither email addresses nor URLs are allowed in strict mode.');
320
-                   return false;
319
+                    $this->_error('Neither email addresses nor URLs are allowed in strict mode.');
320
+                    return false;
321 321
                 } else {
322 322
                     // Skip first char
323 323
                     if ($k) {
Please login to merge, or discard this patch.
system/modules/Ui/appAdminControllers/content/dataManager/view.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
     ]]);
59 59
     ?>)</h3>
60 60
   <?php
61
-  foreach (\Dashboard\Comment::getList([ 'where' => [
62
-          ['item_id', $item->id],
63
-          ['model', $modelName],
64
-      ], 'order' => ['date_create', 'desc']]) as $comment) {
65
-      ?>
61
+    foreach (\Dashboard\Comment::getList([ 'where' => [
62
+            ['item_id', $item->id],
63
+            ['model', $modelName],
64
+        ], 'order' => ['date_create', 'desc']]) as $comment) {
65
+        ?>
66 66
       <div class="row">
67 67
         <div class="col-sm-3" style="max-width: 300px;">
68 68
           <a href='/admin/Users/view/User/<?= $comment->user->pk(); ?>'><?= $comment->user->name(); ?></a><br />
@@ -73,14 +73,14 @@  discard block
 block discarded – undo
73 73
         </div>
74 74
       </div>
75 75
       <?php
76
-  }
77
-  ?>
76
+    }
77
+    ?>
78 78
 </div>
79 79
 <div>
80 80
   <?php
81
-  $form = new \Ui\Form();
82
-  $form->begin();
83
-  $form->input('textarea', 'comment', 'Комментарий');
84
-  $form->end();
85
-  ?>
81
+    $form = new \Ui\Form();
82
+    $form->begin();
83
+    $form->input('textarea', 'comment', 'Комментарий');
84
+    $form->end();
85
+    ?>
86 86
 </div>
Please login to merge, or discard this patch.