X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/4f94e53093f2efc2b1046be872fa3934809a918f..5f2bfe8167f321ab21a0b746786c9b93cdab2350:/src/info.ingresarTemas.php?ds=sidebyside diff --git a/src/info.ingresarTemas.php b/src/info.ingresarTemas.php index 4b336a9..7e8a277 100644 --- a/src/info.ingresarTemas.php +++ b/src/info.ingresarTemas.php @@ -18,14 +18,18 @@ marco_cabecera('Ingreso de Temas'); // Verifica que la persona sea administrador del sistema if ($_SESSION['user']->esAdmin()) { + //Para modificar los valores + if (isset($_POST['__hidID'])) { + $__hidID = $_POST['__hidID'] * 1; + } else { + $__hidID = -1; + } + if (isset($_POST['txtNombre']) && isset($_FILES['txtIcono']) && isset($_POST['txtDescripcion'])) { - if ( info_ingresar_tema( $_POST['txtNombre'], $_SESSION['user']->getId(), $_POST['txtDescripcion'], $_FILES['txtIcono']['tmp_name'] ) ) { - info_form_ingresar_tema( "", "", "" ); - } else { - info_form_ingresar_tema( $_POST['txtNombre'], $_FILES['txtIcono'], $_POST['txtDescripcion'] ); - } + $__hidID = info_ingresar_tema( $__hidID, $_POST['txtNombre'], $_SESSION['user']->getId(), $_POST['txtDescripcion'], $_FILES['txtIcono']['tmp_name'] ); + info_form_ingresar_tema( $__hidID, $_POST['txtNombre'], $_FILES['txtIcono'], $_POST['txtDescripcion'] ); } else { - info_form_ingresar_tema( "", "", "" ); + info_form_ingresar_tema( $__hidID, "", "", "" ); } } else { echo warn("No esta habilitado para dar de alta un tema, debe ser administrador del sistema");