diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-13 10:19:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-13 10:19:38 +0000 |
commit | 67cfb7808fda46dc3da4724317173b5a32d3d784 (patch) | |
tree | fc669088f92c50c85d2d42533838c2f6da5a7728 | |
parent | 2285afd1e019fc7fa28ded777098be2b0ec0fe6c (diff) | |
download | brdo-67cfb7808fda46dc3da4724317173b5a32d3d784.tar.gz brdo-67cfb7808fda46dc3da4724317173b5a32d3d784.tar.bz2 |
- Fixed typo; missing ".
-rw-r--r-- | includes/comment.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/comment.inc b/includes/comment.inc index 8afe7fe7e..f09585eee 100644 --- a/includes/comment.inc +++ b/includes/comment.inc @@ -255,7 +255,7 @@ function comment_thread_min($cid, $threshold) { while ($comment = db_fetch_object($result)) { print "<UL>"; - print " <LI>". comment_view($comment) .</LI>\n"; + print " <LI>". comment_view($comment) ."</LI>\n"; comment_thread_min($comment->cid, $threshold); print "</UL>"; } |