From 5be6ac5dbe60a9126ba49f994bc7861e3fde03c7 Mon Sep 17 00:00:00 2001 From: Platonides Date: Tue, 22 May 2018 00:20:39 +0200 Subject: [PATCH] =?utf8?q?Comprobaci=C3=B3n=20de=20si=20han=20enviado=20el?= =?utf8?q?=20formulario?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- html/inscripcion.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html/inscripcion.php b/html/inscripcion.php index 4c8d6d8..e623c69 100755 --- a/html/inscripcion.php +++ b/html/inscripcion.php @@ -140,7 +140,8 @@ if (in_array ("Cuenta", $Exigidos)) { } -if ($_POST["Confirmado"] == "N") { # Datos enviados +if (isset($_POST["Confirmado"])) { # Datos enviados + $_POST["Confirmado"] = "N"; # Inicialmente no confirmado $GruposI = preg_filter ("/^_(.*)/", "$1", array_keys ($_POST)); if (! $GruposI) { $Error[] = $DI["errw"]["nohorario"]; -- 2.30.2