Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29120
Modified Files:
serendipity_functions.inc.php
Log Message:
The displayComments() functions always only gets entries of type 'NORMAL',
so why do we bother do display it? I found it rather disturbing to read
'NORMAL' for every comment.
(NOTE: In previous versions this was only showing $type, which was always
empty. It got introduced by jtate in
http://cvs.sourceforge.net/viewcvs.py/php-blog/serendipity/serendipity_functions.inc.php?r1=1.194&r2=1.195
and I guess it was only because it looked like a bug. If there are
objections, raise your voice)
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -d -r1.197 -r1.198
--- serendipity_functions.inc.php 6 Feb 2004 21:56:21 -0000 1.197
+++ serendipity_functions.inc.php 6 Feb 2004 22:36:59 -0000 1.198
@@ -962,7 +962,7 @@
<?php echo nl2br(serendipity_markup_text(serendipity_emoticate($body))); ?><br />
<div class="serendipity_comment_source">
- <a href="#c<?php echo $comment['id']; ?>" title="<?php echo LINK_TO_COMMENT . $x; ?>">#<?php echo $x ; ?></a> - <?php echo $comment['type'] . ' '; ?>
+ <a href="#c<?php echo $comment['id']; ?>" title="<?php echo LINK_TO_COMMENT . $x; ?>">#<?php echo $x ; ?></a>
<?php
/* Link to the user's email */
if ( !empty($comment['email']) ) {
|