Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17147
Modified Files:
serendipity_functions.inc.php
Log Message:
Make comments much more tolerant of threaded comments. It is a slight BC break, but the old system looks terrible with threaded comments.
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.363
retrieving revision 1.364
diff -u -d -r1.363 -r1.364
--- serendipity_functions.inc.php 25 Jul 2004 09:26:03 -0000 1.363
+++ serendipity_functions.inc.php 26 Jul 2004 03:23:06 -0000 1.364
@@ -1584,7 +1584,7 @@
?>
<div class="serendipity_comment">
<a <?php echo ($serendipity['XHTML11'] ? 'id' : 'name'); ?>="c<?php echo $comment['id']; ?>"></a>
- <?php echo $body; ?><br />
+ <div class="serendipity_commentBody"><?php echo $body; ?></div>
<div class="serendipity_comment_source">
<a href="#c<?php echo $comment['id']; ?>" title="<?php echo LINK_TO_COMMENT . $indent . $i; ?>">#<?php echo $indent . $i; ?></a>
@@ -1620,7 +1620,6 @@
}
?>
</div>
- <br />
<?php
}
}
|