]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/faq.ingresarPregunta.php
Se agrega un logo.
[z.facultad/75.43/tp1.git] / src / faq.ingresarPregunta.php
index 0944d7090915bd873649a5c7e37030ad12a37ef5..1fa97f1295a00bc3af911eaa77cd0d4be170006c 100644 (file)
@@ -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 <br/>";
-
 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