add URL parameter to ignore user theme on startup
This commit is contained in:
parent
ad0a9c02e5
commit
19e1d13460
|
@ -39,7 +39,7 @@
|
|||
<title>Tiny Tiny RSS</title>
|
||||
<meta name="viewport" content="initial-scale=1,width=device-width" />
|
||||
|
||||
<?php if ($_SESSION["uid"]) {
|
||||
<?php if ($_SESSION["uid"] && !isset($_REQUEST["ignore-theme"])) {
|
||||
$theme = get_pref("USER_CSS_THEME", false, false);
|
||||
if ($theme && theme_exists("$theme")) {
|
||||
echo stylesheet_tag(get_theme_path($theme), 'theme_css');
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
|
||||
<meta name="viewport" content="initial-scale=1,width=device-width" />
|
||||
|
||||
<?php if ($_SESSION["uid"]) {
|
||||
<?php if ($_SESSION["uid"] && !isset($_REQUEST["ignore-theme"])) {
|
||||
$theme = get_pref("USER_CSS_THEME", false, false);
|
||||
if ($theme && theme_exists("$theme")) {
|
||||
echo stylesheet_tag(get_theme_path($theme), 'theme_css');
|
||||
|
|
Loading…
Reference in New Issue