X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/577e6e1ee9500b2ba90a3dd81a0de17e84f9211c..6cc7f7c916da362c797ddbcf599c75229bfc9b6d:/src/faq.responderPregunta.php diff --git a/src/faq.responderPregunta.php b/src/faq.responderPregunta.php index aeef924..b3b2acd 100644 --- a/src/faq.responderPregunta.php +++ b/src/faq.responderPregunta.php @@ -8,27 +8,26 @@ // // $Id$ +require_once 'lib/pagina.php'; require_once 'lib/Pregunta.php'; require_once 'lib/faq.functions.php'; -require_once 'lib/pagina.php'; require_once 'lib/validacion.php'; require_once 'lib/faq.forms.php'; -marco_cabecera('Responder una Pregunta'); +pagina_cabecera('Responder una Pregunta'); // Si me llegó el form completo if (isset($_POST['Respuesta'])) { // Muestro el formulario y luego el mensaje del intento de formulacion de pregunta - faq_form_responder_pregunta($_POST['PreguntaId']); - //Todo: Falta que maneje el tema de usuario - echo Faq_IngresarRespuesta($_POST['PreguntaId'],"1",$_POST['Respuesta']); + //faq_form_responder_pregunta($_POST['PreguntaId']); + echo Faq_IngresarRespuesta($_POST['PreguntaId'],$_SESSION['user']->GetId(),$_POST['Respuesta']); } else { faq_form_responder_pregunta($_POST['PreguntaId']); } -marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar'); +pagina_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar'); ?> \ No newline at end of file