mgd_list_reply_articles
mgd_list_reply_articles -- List articles in reply of an article
Description
`**mgd_list_reply_articles** (int id)`
Minimum version: Midgard 1.1.1
Lists all articles that have their up field set to the id.
Returns an object traversable by calling fetch() if successful. Returns FALSE on failure.
N == 0 ) {
echo "No replies to article $article found.";
} else {
echo ($replies-N ==1 ) ? 'reply' : 'replies'," to article $article:<br>";
while( $replies->fetch() ) {
echo $replies->title . " by " $replies.authorname
\n";
}
}
?>
