Browse Source

upd: default css url if no theme

Andrew Dolgov 6 years ago
parent
commit
3f2a871421
2 changed files with 2 additions and 2 deletions
  1. 1 1
      index.php
  2. 1 1
      prefs.php

+ 1 - 1
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");
 		}
 	}
 	?>

+ 1 - 1
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");
 		}
 	}
 	?>