fix USER_STYLESHEET for mysql (was broken because of CR escaping

This commit is contained in:
Andrew Dolgov
2010-12-28 09:11:49 +03:00
parent 947daa10a1
commit 5823f9fbab
3 changed files with 6 additions and 2 deletions

View File

@@ -7059,7 +7059,7 @@
if ($value) {
print "<style type=\"text/css\">";
print $value;
print str_replace("<br/>", "\n", $value);
print "</style>";
}