这...有点难度因为要把风格资料夹的名称改掉!!当然也必须修改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;
}
不过经过修改后论坛前台的风格读取无误..但是后台的却读取不到了我晕....