getComment($id); if ($comment === null) { header('HTTP/1.0 404 Not Found'); header('Content-Type: text/plain'); echo "Comment not found\n"; exit(1); } if (isset($comment->properties->content['html'])) { $htmlContent = $comment->properties->content['html']; } else { $htmlContent = nl2br($comment->properties->content[0]); } $rowComment = $comment->Xrow; $rowUser = $comment->user; render( 'comment', array( 'json' => $comment->properties, 'crow' => $rowComment, 'comment' => $comment, 'author' => array( 'name' => $rowUser->user_name, 'url' => Urls::full(Urls::user($rowUser->user_id)), 'imageurl' => Urls::userImg($rowUser), ), 'htmlContent' => $htmlContent, 'replyUrl' => Urls::full( '/reply.php?url=' . urlencode(Urls::full($rowComment->comment_id)) ), ) ); ?>