"; echo "#".$this->id." Fecha: ".$this->fecha."
";; $UsuarioPregunta = new Usuario($this->autor); echo $UsuarioPregunta->toHTML(); echo $this->texto."
"; if ( count ( $this->respuestas ) != 0 ) { foreach ( $this->respuestas as $objRespuesta ) { $objRespuesta->toHTML(); if ( ( $objRespuesta->ranking != -1 ) ) { echo "Puntaje: ".$objRespuesta->ranking."
" ; } else { if ( $this->autor == $_SESSION['user']->getId() ) { faq_form_ir_a_calificar_respuesta($objRespuesta->id); } else { echo "La respuesta aun no fue rankeada.
" ; } } } } } } ?>