summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-12-06 14:02:30 +0300
committerAndrew Dolgov <[email protected]>2019-12-06 14:02:30 +0300
commitac95ab4a659c56afee048923883fe9ee1491c35b (patch)
tree736db91a39634a2e2c8ab8349f4d95526a486571 /include
parent0697eca0e111a194f15f12025ee1859b0f32843b (diff)
user css dialog: allow saving and applying CSS without closing the dialog
Diffstat (limited to 'include')
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index b4e91fe9c..153a96698 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -1584,7 +1584,7 @@
$value = get_pref('USER_STYLESHEET');
if ($value) {
- print "<style type=\"text/css\">";
+ print "<style type='text/css' id='user_css_style'>";
print str_replace("<br/>", "\n", $value);
print "</style>";
}