");
require_once("./_incbody/_sotw.php");
if ($user_comment_objs)
{
e("
");
foreach ($user_comment_objs as $user_comment_obj)
{
$user_comment_author = $user_comment_obj->getAuthor();
$user_comment_content = $user_comment_obj->getContent(TRUE);
$user_comment_date = $user_comment_obj->GetDate(TRUE);
$user_comment_image = $user_comment_obj->getImage();
$user_comment_age = $user_comment_obj->getAge();
$content = "$user_comment_author";
if ($user_comment_age)
{
$content.= " ($user_comment_age)";
}
$content.= " - Submitted $user_comment_date";
e("
$content
");
$content = "";
if ($user_comment_image)
{
$content.= "
";
}
$content.= $user_comment_content;
e("");
e("
");
}
e("
");
}
else
{
e("
");
e("
");
e("
");
e("
No comments have been submitted for this scene.
");
}
?>