PDA

View Full Version : comments


cbtoday
08-28-2005, 07:03 AM
hi, in the comment box, I find that the comments and the visitor name/date is as follow :

This is a sentence of the comment.
Visitor X @ 2005...etc etc

I would like to have a space between these 2 lines, can I know how to do that?
Thanks.

Joe[y]
08-28-2005, 10:35 AM
in includes/functions.php change the line

$image_comments .= "<li>".nl2br($comment_message)."<br />$comment_name @ $comment_datetime</li>";

to

$image_comments .= "<li>".nl2br($comment_message)."<br /><br />$comment_name @ $comment_datetime</li>";

cbtoday
08-29-2005, 05:11 PM
It works!! thanks.