GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 7a5e4a...056a26 )
by Calima
04:12
created
mvc/controladores/instaladorControlador.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
              if($a){
87 87
                  
88 88
                 $this->paso1($proyecto,$analytics,$hostbd,$nombrebd,$usuariobd,$usuariobd,$clavebd,$config);
89
-             }else{
89
+             } else{
90 90
                  $this->_ayuda->redireccionUrl('instalador?error="Los datos que estas ingresando no coniciden con los de la BD"');
91 91
              }
92 92
         
Please login to merge, or discard this patch.
mvc/controladores/usuarioControlador.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,7 @@
 block discarded – undo
48 48
                     );
49 49
                 $this->_ayuda->redireccionUrl('usuario');
50 50
                 //$_POST['option1']=false;
51
-        }
52
-        else{
51
+        } else{
53 52
             $this->_ayuda->redireccionUrl('usuario/registro');
54 53
         }
55 54
     }
Please login to merge, or discard this patch.
mvc/vistas/adicionales/encabezado.php 1 patch
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,10 @@
 block discarded – undo
20 20
 </script>
21 21
 <!-- End Google Analytics -->
22 22
 
23
-    <title><?php if(isset($this->titulo)) echo $this->titulo; ?></title>
23
+    <title><?php if(isset($this->titulo)) {
24
+    echo $this->titulo;
25
+}
26
+?></title>
24 27
 
25 28
     
26 29
     
Please login to merge, or discard this patch.
mvc/controladores/dataControlador.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,11 +64,11 @@
 block discarded – undo
64 64
             if($_SESSION['nivel']==1){
65 65
             $this->_vista->titulo = 'CalimaFramework';
66 66
             $this->_vista->imprimirVista('index', 'data');
67
-            }else{
67
+            } else{
68 68
                 $this->_ayuda->redireccionUrl('usuario');
69 69
             }
70 70
             
71
-        }elseif (Cf_CONFIG_INICIO=='false') {
71
+        } elseif (Cf_CONFIG_INICIO=='false') {
72 72
             
73 73
             $this->_vista->titulo = 'CalimaFramework';
74 74
             $this->_vista->imprimirVista('index', 'data');
Please login to merge, or discard this patch.