Completed
Push — master ( 648e7d...7ea321 )
by Mikołaj
03:46
created
src/module/Pages/One/Admin/AddController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
             if ($form->isValid()) {
25 25
                 $id = $form->save();
26 26
                 $addModel->flushCache('pages');
27
-                $this->redirect(DIR . '/admin/pages/edit/' . $id);
27
+                $this->redirect(DIR.'/admin/pages/edit/'.$id);
28 28
             }
29 29
 
30 30
             $form->displayAlerts();
Please login to merge, or discard this patch.
src/module/Galleries/One/Admin/DelController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             if ($form->isValid()) {
26 26
                 $form->delete();
27 27
                 $delModel->flushCache('galleries');
28
-                $this->redirect(DIR . '/admin/galleries');
28
+                $this->redirect(DIR.'/admin/galleries');
29 29
             }
30 30
 
31 31
             $form->displayAlerts();
Please login to merge, or discard this patch.
src/module/Articles/One/Admin/DelController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             if ($form->isValid()) {
26 26
                 $form->delete();
27 27
                 $delModel->flushCache('articles');
28
-                $this->redirect(DIR . '/admin/articles');
28
+                $this->redirect(DIR.'/admin/articles');
29 29
             }
30 30
 
31 31
             $form->displayAlerts();
Please login to merge, or discard this patch.
src/module/Articles/One/Admin/EditController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
             if ($form->isValid() && $form->update()) {
31 31
                 $editModel->flushCache('articles');
32
-                $this->redirect(DIR . '/admin/articles/edit/' . $id);
32
+                $this->redirect(DIR.'/admin/articles/edit/'.$id);
33 33
             }
34 34
 
35 35
             $form->displayAlerts();
Please login to merge, or discard this patch.
src/module/Articles/One/Admin/AddController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             if ($form->isValid()) {
29 29
                 $id = $form->save();
30 30
                 $addModel->flushCache('articles');
31
-                $this->redirect(DIR . '/admin/articles/edit/' . $id);
31
+                $this->redirect(DIR.'/admin/articles/edit/'.$id);
32 32
             }
33 33
 
34 34
             $form->displayAlerts();
Please login to merge, or discard this patch.
src/module/Articles/Category/One/Admin/DelController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             if ($form->isValid()) {
30 30
                 $form->delete();
31 31
                 $delModel->flushCache('categories');
32
-                $this->redirect(DIR . '/admin/articles/categories');
32
+                $this->redirect(DIR.'/admin/articles/categories');
33 33
             }
34 34
 
35 35
             $form->displayAlerts();
Please login to merge, or discard this patch.
src/module/Articles/Category/One/Admin/EditController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
             if ($form->isValid() && $form->update()) {
32 32
                 $editModel->flushCache('categories');
33
-                $this->redirect(DIR . '/admin/articles/categories/edit/' . $id);
33
+                $this->redirect(DIR.'/admin/articles/categories/edit/'.$id);
34 34
             }
35 35
 
36 36
             $form->displayAlerts();
Please login to merge, or discard this patch.
src/module/Articles/Category/One/Admin/AddController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
             if ($form->isValid()) {
27 27
                 $id = $form->save();
28 28
                 $addModel->flushCache('categories');
29
-                $this->redirect(DIR . '/admin/articles/categories/edit/' . $id);
29
+                $this->redirect(DIR.'/admin/articles/categories/edit/'.$id);
30 30
             }
31 31
 
32 32
             $form->displayAlerts();
Please login to merge, or discard this patch.