Passed
Branch master (a66791)
by Henry Stivens
01:33
created
default/app/controllers/pages_controller.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $this->limit_params = false;
34 34
         // Si es AJAX enviar solo el view
35 35
         if (Input::isAjax()) {
36
-          View::template(null);
36
+            View::template(null);
37 37
         }
38 38
         // Usar directamente controlador/pagina
39 39
         if (! method_exists($this, $this->action_name)) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
           View::template(null);
37 37
         }
38 38
         // Usar directamente controlador/pagina
39
-        if (! method_exists($this, $this->action_name)) {
39
+        if (!method_exists($this, $this->action_name)) {
40 40
             array_unshift($this->parameters, $this->action_name);
41 41
             $this->action_name = 'show';
42 42
         }
Please login to merge, or discard this patch.
default/app/libs/active_record.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 /**
3 3
  * @see KumbiaActiveRecord
4 4
  */
5
-require_once CORE_PATH.'libs/kumbia_active_record/kumbia_active_record.php';
5
+require_once CORE_PATH . 'libs/kumbia_active_record/kumbia_active_record.php';
6 6
 
7 7
 /**
8 8
  * ActiveRecord
Please login to merge, or discard this patch.
default/public/index.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
  * Obtiene la url usando $_GET['_url']
89 89
  * Cambiar también en el .htaccess
90 90
  */
91
- //$url = isset($_GET['_url']) ? $_GET['_url'] : '/';
91
+    //$url = isset($_GET['_url']) ? $_GET['_url'] : '/';
92 92
 
93 93
 /**
94 94
  * Carga el gestor de arranque
Please login to merge, or discard this patch.