There is a bug with hiding mail body messages on ru mailing list, like
these ones: http://news.php.net/php.doc.ru/1205,
http://news.php.net/php.doc.ru/1196,
http://news.php.net/php.doc.ru/1198.
So it seems i fixed it, but have no karma to commit it myself, so
here's the patch (quite trivial). Please commit it or give me the
karma so I can commit it myself.

-- 
Regards,
Shein Alexey
Index: article.php
===================================================================
--- article.php	(revision 306852)
+++ article.php	(working copy)
@@ -161,7 +161,7 @@
 
 		$line = $linebuf . $line;
 
-		if (substr($line, -2) == "\r\n") {
+		if (substr($line, -1) == "\n") {
 		   $linebuf = '';
 		} else {
 		   $linebuf = $line;

Reply via email to