X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/a214348061dc6250492e0d9c95eb303e8b7bf4ae..58928788835f38c680be09a8d88e54852d9c4410:/src/faq.ingresarPregunta.php?ds=inline diff --git a/src/faq.ingresarPregunta.php b/src/faq.ingresarPregunta.php index 0944d70..8081290 100644 --- a/src/faq.ingresarPregunta.php +++ b/src/faq.ingresarPregunta.php @@ -20,11 +20,12 @@ pagina_check_login(); pagina_cabecera('Ingreso de Preguntas'); // Si me llegó el form completo -echo $_SESSION['user']->getCreditos(). "Ahora sigue
"; - if (isset($_POST['Pregunta'])) { - // Muestro el formulario y luego el mensaje del intento de formulacion de pregunta + // Da de alta la pregunta + echo Faq_IngresarPregunta( $_SESSION['user'], $_POST['Pregunta'] ); + + // Vuelve a mostrar el formulario si todavia el usuario tiene creditos sufcientes // Verifica que la persona sea asesor o tenga credito suficiente para preguntar if ( $_SESSION['user']->getCreditos() > 0 ) { @@ -34,7 +35,6 @@ if (isset($_POST['Pregunta'])) { echo "No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema"; } - echo Faq_IngresarPregunta( $_SESSION['user'], $_POST['Pregunta'] ); } else {