summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index 5e567af03..28f2cc892 100644
--- a/functions.php
+++ b/functions.php
@@ -7040,4 +7040,15 @@
}
}
+ function print_user_stylesheet($link) {
+ $value = get_pref($link, 'USER_STYLESHEET');
+
+ if ($value) {
+ print "<style type=\"text/css\">";
+ print $value;
+ print "</style>";
+ }
+
+ }
+
?>