X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/4f94e53093f2efc2b1046be872fa3934809a918f..4c0b071a5dba4dd6f682f43233cfaaee0be06ba1:/src/info.ingresarInfo.php diff --git a/src/info.ingresarInfo.php b/src/info.ingresarInfo.php index 09f3911..cd71ccd 100644 --- a/src/info.ingresarInfo.php +++ b/src/info.ingresarInfo.php @@ -12,20 +12,24 @@ require_once 'lib/info.forms.php'; // Chequea que se este logueado pagina_check_login(); -marco_cabecera('Ingreso de Temas'); +marco_cabecera('Ingreso de Informacion'); -// Da de alta el tema -// Verifica que la persona sea administrador del sistema +// Da de alta la Informacion +// Verifica que la persona no 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['txtTema']) && isset($_POST['txtURL']) && isset($_POST['txtComentario'])) { - if ( info_ingresar_info( $_POST['txtTema'], $_POST['txtURL'], $_SESSION['user']->getId(), $_POST['txtComentario'] ) ) { - info_form_ingresar_info( "", "", "" ); - } else { - info_form_ingresar_info( $_POST['txtTema'], $_POST['txtURL'], $_POST['txtComentario'] ); - } + $__hidID = info_ingresar_info( $__hidID, $_POST['txtTema'], $_POST['txtURL'], $_SESSION['user']->getId(), $_POST['txtComentario'] ); + info_form_ingresar_info( $__hidID, $_POST['txtTema'], $_POST['txtURL'], $_POST['txtComentario'] ); } else { - info_form_ingresar_info( "", "", "" ); + info_form_ingresar_info( $__hidID, "", "", "" ); } } else { echo warn("No esta habilitado para dar de alta informacion, debe ser socio o asesor");