Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_comments
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2764
Modified Files:
Tag: branch-0-5
serendipity_plugin_comments.php
Log Message:
MFH
Index: serendipity_plugin_comments.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_comments/serendipity_plugin_comments.php,v
retrieving revision 1.12
retrieving revision 1.12.2.1
diff -u -d -r1.12 -r1.12.2.1
--- serendipity_plugin_comments.php 23 Jan 2004 09:51:51 -0000 1.12
+++ serendipity_plugin_comments.php 3 Feb 2004 17:49:45 -0000 1.12.2.1
@@ -112,7 +112,7 @@
FROM '.$serendipity['dbPrefix'].'comments AS c,
'.$serendipity['dbPrefix'].'entries AS e
WHERE e.id = c.entry_id
- AND NOT (c.type = "TRACKBACK" AND c.author = "' . serendipity_db_escape_string($serendipity['blogTitle']) . '" AND c.title != "")
+ AND NOT (c.type = \'TRACKBACK\' AND c.author = \'' . serendipity_db_escape_string($serendipity['blogTitle']) . '\' AND c.title != \'\')
ORDER BY c.timestamp DESC
LIMIT ' . $max_entries;
?>
|