瀏覽代碼

upd: default css url if no theme

Andrew Dolgov 6 年之前
父節點
當前提交
3f2a871421
共有 2 個文件被更改,包括 2 次插入2 次删除
  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");
 		}
 	}
 	?>