From f5577a4119a929db08ec1467e6c0b9da77ee6d07 Mon Sep 17 00:00:00 2001 From: rmontanana Date: Mon, 28 Jul 2014 15:54:29 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20#41.=20Corrige=20las=20llamadas=20que=20s?= =?UTF-8?q?e=20hac=C3=ADan=20a=20instalar.php=20en=20lugar=20de=20a=20Inst?= =?UTF-8?q?alar.php=20desde=20Inventario.php=20y=20desde=20Instalar.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG | 3 +++ Instalar.php | 12 ++++++------ Inventario.php | 2 +- inc/version.inc | 2 +- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index fb94ad0..12cc715 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +Versión 1.16 28-07-2014 +-Fix #41. Arregla las llamadas a Instalar.php que se hacían desde Inventario.php y desde Instalar.php + Versión 1.15 29-06-2014 -Crear la opción de clonar registro en Mantenimiento. -Crear iconos de clonado en todos los estilos. diff --git a/Instalar.php b/Instalar.php index 20d32bf..afe4f52 100644 --- a/Instalar.php +++ b/Instalar.php @@ -149,7 +149,7 @@ class Instalar { // Final del paso $info .=''; - $info .= $this->validaPaso0() ? $this->retornaBoton(false, "instalar.php?paso=1") : $this->retornaBoton(true, "instalar.php"); + $info .= $this->validaPaso0() ? $this->retornaBoton(false, "Instalar.php?paso=1") : $this->retornaBoton(true, "Instalar.php"); $panel = $this->panelMensaje($info, 'primary', 'PASO 1: Configuración del servidor y la aplicación'); return $panel; } @@ -284,7 +284,7 @@ class Instalar { return $this->paso2(); } - $info = '
'; + $info = ''; $info .= ''; - $info .= $this->botonVolver("instalar.php"); - $info .= $this->validaPaso1() ? $this->retornaBoton(false, "instalar.php?paso=1", false) : $this->retornaBoton(true, "instalar.php?paso=1", false); + $info .= $this->botonVolver("Instalar.php"); + $info .= $this->validaPaso1() ? $this->retornaBoton(false, "Instalar.php?paso=1", false) : $this->retornaBoton(true, "Instalar.php?paso=1", false); $info .= '
'; $panel = $this->panelMensaje($info, 'primary', 'PASO 2: Configuración de la Base de Datos.'); return $panel; @@ -415,7 +415,7 @@ class Instalar { } $info = ' -
+
@@ -435,7 +435,7 @@ class Instalar {
- ' . $this->botonVolver("instalar.php?paso=1") . ' + ' . $this->botonVolver("Instalar.php?paso=1") . '
diff --git a/Inventario.php b/Inventario.php index 2c9f78e..404d5bd 100644 --- a/Inventario.php +++ b/Inventario.php @@ -42,7 +42,7 @@ class Inventario { $this->opcActual = $_SERVER['QUERY_STRING'] == '' ? 'principal' : $_SERVER['QUERY_STRING']; //Si el programa no está instalado, llama al instalador. if (INSTALADO == "no") { - header('location: instalar.php'); + header('location: Instalar.php'); return; } // Iniciamos una sesión diff --git a/inc/version.inc b/inc/version.inc index 3e1bff5..856866b 100644 --- a/inc/version.inc +++ b/inc/version.inc @@ -23,5 +23,5 @@ */ define('AUTOR', 'Ricardo Montañana Gómez'); -define('VERSION', '1.15'); +define('VERSION', '1.16'); ?>