summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-12-28 09:11:49 +0300
committerAndrew Dolgov <[email protected]>2010-12-28 09:11:49 +0300
commit5823f9fbabb610a487b5d50a1a81b33445cfb881 (patch)
tree168f83cee9034fcde79dbb41b9cb1c71b9443471 /functions.php
parent947daa10a1a86d4dad738ae789cc2fc8ec28d5d6 (diff)
fix USER_STYLESHEET for mysql (was broken because of CR escaping
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 3928b2a34..b2694f7ec 100644
--- a/functions.php
+++ b/functions.php
@@ -7059,7 +7059,7 @@
if ($value) {
print "<style type=\"text/css\">";
- print $value;
+ print str_replace("<br/>", "\n", $value);
print "</style>";
}