X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fmsgclean.php;h=6f7a42e6a4b0c39b7225f2bc602adefec1731f32;hb=e4a2430967f229dd02bc97c5c66be0620b3235d8;hp=4abbafb71b8ea2b55b1cb401df0d9e7aaaa94052;hpb=de5a0dadb0715198b9ba376e4ab79f58cedef098;p=friendica.git diff --git a/include/msgclean.php b/include/msgclean.php index 4abbafb71b..6f7a42e6a4 100644 --- a/include/msgclean.php +++ b/include/msgclean.php @@ -158,7 +158,7 @@ function removelinebreak($message) $currquotelevel = 0; $currline = $line; while ((strlen($currline)>0) && ((substr($currline, 0, 1) == '>') - || (substr($currline, 0, 1) == ' '))) { + || (substr($currline, 0, 1) == ' '))) { if (substr($currline, 0, 1) == '>') $currquotelevel++; @@ -168,7 +168,7 @@ function removelinebreak($message) $quotelevel = 0; $nextline = trim($arrbody[$i+1]); while ((strlen($nextline)>0) && ((substr($nextline, 0, 1) == '>') - || (substr($nextline, 0, 1) == ' '))) { + || (substr($nextline, 0, 1) == ' '))) { if (substr($nextline, 0, 1) == '>') $quotelevel++; @@ -203,7 +203,7 @@ function removelinebreak($message) $lines[$lineno] .= ' '; while ((strlen($line)>0) && ((substr($line, 0, 1) == '>') - || (substr($line, 0, 1) == ' '))) { + || (substr($line, 0, 1) == ' '))) { $line = ltrim(substr($line, 1)); }