vivafei 发表于 2012-10-31 03:51:26

X2.5 518正式版 [order=N] [/order]标签不可用的解决方法

找到以下文件
source\function\function_block.php在这个文件中的function block_template($bid)方法中最后面找到
$template = preg_replace('/\s*\[(order\d+)=\w+\](.*?)\[\/\\1\]\s*/is', '', $template);
$template = preg_replace('/\s*\[(index\d+)=\w+\](.*?)\[\/\\1\]\s*/is', '', $template);
替换为:
$template = preg_replace('/\s*\[(order\d*)=\w+\](.*?)\[\/\\1\]\s*/is', '', $template);
$template = preg_replace('/\s*\[(index\d*)=\w+\](.*?)\[\/\\1\]\s*/is', '', $template);
页: [1]
查看完整版本: X2.5 518正式版 [order=N] [/order]标签不可用的解决方法