image;
printf("\n
", $article->getLink(), $article->title);
printf("\n
%s
", $article->subtitle);
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();
}
?>