image;
printf("\n
", $article->getLink(), $article->title, $article->release_year);
printf("\n
%s
", $article->starring);
printf("\n
Rating: %01.1f / 10.0
", $article->rating);
printf("\n
by %s
", $article->author);
printf("\n
(%s)
", formatDate($article->article_date));
/* this line has some
hacks to make up for xhtml shortcomings in our saved articles */
$text = str_replace('
', '
', $article->text);
printf("\n
", $text);
$responses = new responses();
if ( $responses->retrieve($article->type, $article->id) ) {
$responses->outputResponses();
}
?>