Fatal error: ‘continue‘ not in the ‘loop‘ or ‘switch‘ context in /dedecms/include/comm

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;
    }

你可能感兴趣的:(Php,Dedecms织梦)