新加模板,forumdisplay页面在新模板中被是修改过,当前新模板非默认,则出现DIY应用于本页时会调用成默认模板的forumdisplay页面。
function_portalcp.php 第103~104行原为:
loadcache('style_'.$styleid);
$tpldir =$_G['cache']['tpldir'];
现修改成:
loadcache('style_'.$styleid);
$tpldir = $_G['cache']['style_'.$styleid]['tpldir']?$_G['cache']['style_'.$styleid]['tpldir']:'';
第113行中:
$file = getdiytpldir($primaltplname ).'/'.$primaltplname.'.htm';
此执行结果始终为调用默认模板文件
修改为:$file = getdiytpldir($targettplname).'/'.$primaltplname.'.htm';
修改后测试正常,能保存本页 |