這...有點難度因為要把風格資料夾的名稱改掉!!當然也必須修改php檔案...我也成經想要修改但不知道指定讀取板塊的php檔案是哪一個後來發現〝global.php〞中有
複製程式
function GetLang($lang,$EXT="php"){
global $tplpath;
file_exists("./template/$tplpath/lang_$lang.$EXT") ? $path="./template/$tplpath/lang_$lang.$EXT" : $path="./template/wind/lang_$lang.$EXT";
return $path;
}
function PrintEot($template,$EXT="htm"){
global $tplpath;
if(!$template) $template=N;
file_exists("./template/$tplpath/$template.$EXT") ? $path="./template/$tplpath/$template.$EXT" : $path="./template/wind/$template.$EXT";
return $path;
}
不過經過修改後論壇前台的風格讀取無誤..但是後台的卻讀取不到了我暈....