mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 23:35:57 +00:00
update previous to not die on errors
This commit is contained in:
@@ -64,7 +64,7 @@
|
||||
<?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
|
||||
|
||||
<?php if ($_SESSION["uid"]) {
|
||||
$theme = get_pref("USER_CSS_THEME");
|
||||
$theme = get_pref("USER_CSS_THEME", false, false);
|
||||
if ($theme && theme_valid("$theme")) {
|
||||
echo stylesheet_tag(get_theme_path($theme));
|
||||
} else {
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
<?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
|
||||
|
||||
<?php if ($_SESSION["uid"]) {
|
||||
$theme = get_pref("USER_CSS_THEME");
|
||||
$theme = get_pref("USER_CSS_THEME", false, false);
|
||||
if ($theme && theme_valid("$theme")) {
|
||||
echo stylesheet_tag(get_theme_path($theme));
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user