Fatal error: 'continue' not in the 'loop' or 'switch' context in /dedecms/include/common.func.php on line 49

找到
include/common.func.php 第49行
if (isset($_helpers[$helpers]))
{
continue;
}
修改成
if (isset($_helpers[$helpers]))
{
return;
}

博客提及需找到include/common.func.php文件的第49行并进行修改,与后端开发文件操作相关。
665

被折叠的 条评论
为什么被折叠?



