1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 01:51:28 +00:00

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>";
}