X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/a214348061dc6250492e0d9c95eb303e8b7bf4ae..651ed8fa13a9705676dbfd800639f61dbcbac273:/src/faq.ingresarPregunta.php?ds=sidebyside diff --git a/src/faq.ingresarPregunta.php b/src/faq.ingresarPregunta.php index 0944d70..1fa97f1 100644 --- a/src/faq.ingresarPregunta.php +++ b/src/faq.ingresarPregunta.php @@ -14,17 +14,15 @@ require_once 'lib/faq.functions.php'; require_once 'lib/validacion.php'; require_once 'lib/faq.forms.php'; -// Chequea que se este logueado -pagina_check_login(); - -pagina_cabecera('Ingreso de Preguntas'); +marco_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 +32,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 { @@ -49,6 +46,6 @@ else } } -pagina_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar'); +marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar', 'img/j.jpg'); ?> \ No newline at end of file