diff --git a/class/Api.php b/class/Api.php index 08b5a90..e2ae280 100755 --- a/class/Api.php +++ b/class/Api.php @@ -1780,7 +1780,13 @@ class Api { //判断主题目录是否存在,如果curl_host是alpine,则视为容器,容器则将主题目录设置为data/templates $curl_host = curl_version()['host']; if( strstr($curl_host,'alpine') ) { - $theme_dir = "data/templates"; + // 默认主题一律保存到templates目录 + if( $name == "default2" ) { + $theme_dir = "templates"; + } + else{ + $theme_dir = "data/templates"; + } } else{ $theme_dir = "templates"; diff --git a/version.txt b/version.txt index af4c062..f9b438c 100755 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v0.9.36-20241127 \ No newline at end of file +v0.9.37-20241128 \ No newline at end of file