]> git.wh0rd.org - tt-rss.git/commitdiff
upd: default css url if no theme
authorAndrew Dolgov <noreply@fakecake.org>
Sun, 3 Dec 2017 10:10:25 +0000 (13:10 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Sun, 3 Dec 2017 10:10:25 +0000 (13:10 +0300)
index.php
prefs.php

index b56c021ed82b9e63a9c72380fa5e12c6e1771979..daa532aa23dfd5a35f60cfe289afa562aaf78b18 100644 (file)
--- 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");
                }
        }
        ?>
index 16b1dd0eb25f3428532bb11d56509f4ce04ea42e..a0fe93b15ef868d665cb1ddd66a98afe938d36ab 100644 (file)
--- 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");
                }
        }
        ?>