From: Andrew Dolgov Date: Sun, 3 Dec 2017 10:10:25 +0000 (+0300) Subject: upd: default css url if no theme X-Git-Tag: 17.12~7 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=3f2a8714219d33eb57f44e7989c320a63ffc8fb9 upd: default css url if no theme --- diff --git a/index.php b/index.php index b56c021e..daa532aa 100644 --- a/index.php +++ b/index.php @@ -68,7 +68,7 @@ if ($theme && theme_valid("$theme")) { echo stylesheet_tag(get_theme_path($theme)); } else { - echo stylesheet_tag("themes/default.php"); + echo stylesheet_tag("css/default.css"); } } ?> diff --git a/prefs.php b/prefs.php index 16b1dd0e..a0fe93b1 100644 --- a/prefs.php +++ b/prefs.php @@ -44,7 +44,7 @@ if ($theme && theme_valid("$theme")) { echo stylesheet_tag(get_theme_path($theme)); } else { - echo stylesheet_tag("themes/default.php"); + echo stylesheet_tag("css/default.css"); } } ?>