]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/faq.functions.php
Se agrega función para agregar créditos.
[z.facultad/75.43/tp1.git] / src / lib / faq.functions.php
index 6425bfdc88fe8f25f9c2820efbc0bc6b853b6a67..a11e5d2328d1a95bb3b297984f02b30f5c1bd27e 100644 (file)
@@ -137,8 +137,11 @@ function Faq_IngresarPregunta($Usuario, $Pregunta)
   fwrite($fp, $Linea);
   fclose($fp);
   
-       // Disminuye el credito del usuario
-       file_creditos_preguntar( $Usuario->getId() );
+       // Disminuye el credito del usuario, si es que no es asesor y tiene credito infinito
+       if ( !$Usuario->esAsesor() )
+       {
+        file_creditos_preguntar( $Usuario->getId() );
+       }
        
        return "La pregunta fue dada de alta correctamente";
  }
@@ -186,7 +189,7 @@ function Faq_ListarPreguntas($Usuario)
         {
                if ( $ObjPregunta->activa )
                {
-                       $ObjPregunta->Mostrar();
+                       $ObjPregunta->toHTML();
                                ?>
                                <input type="radio" name="PreguntaId" value="<?php echo $ObjPregunta->id ?>"> Seleccionar Pregunta <br/> 
                                <?php