Fix from mailing list.

git-svn-id: https://develop.svn.wordpress.org/trunk@2424 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-03-09 21:39:01 +00:00
parent 66f5cbe5df
commit dc25d8ac9f

View File

@ -70,7 +70,7 @@ POSSIBILITY OF SUCH DAMAGE.
$text = preg_split("/\n/",$text);
foreach($text as $line){
$line = trim($line);
$line = rtrim($line);
$lineout[] = $line;
}