Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv7035
Modified Files:
serendipity_functions.inc.php
Log Message:
Missing space in comment(s)[](n)
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -d -r1.162 -r1.163
--- serendipity_functions.inc.php 10 Oct 2003 15:02:53 -0000 1.162
+++ serendipity_functions.inc.php 10 Oct 2003 15:11:15 -0000 1.163
@@ -713,7 +713,7 @@
$label = $entry['comments'] == 1 ? COMMENT : COMMENTS;
echo ' | <a href="' . $serendipity['serendipityHTTPPath'] . 'comment.php?serendipity[entry_id]=' . $entry['id'] . '&serendipity[type]=comments"';
echo ' onClick="window.open(this.href, \'comments\', \'width=480,height=480,scrollbars=yes\'); return false;">';
- echo $label . '(' . $entry['comments'] . ')</a>';
+ echo $label . ' (' . $entry['comments'] . ')</a>';
}
$label = $entry['trackbacks'] == 1 ? TRACKBACK : TRACKBACKS;
|