1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 22:19:13 +00:00

rework user CSS support (bump schema)

This commit is contained in:
Andrew Dolgov
2010-11-24 19:23:24 +03:00
parent dcb38ced56
commit 88e4e5979c
12 changed files with 98 additions and 17 deletions

View File

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