preserve newlines on all networks

This commit is contained in:
Friendika
2010-11-05 02:19:39 -07:00
parent b94cb8d234
commit 206eee0229
3 changed files with 6 additions and 6 deletions

View File

@@ -694,7 +694,7 @@ function xmlify($str) {
$buffer .= '>';
break;
case "\n" :
$buffer .= ' ';
$buffer .= "\n";
break;
default :
$buffer .= $char;