打开 /includes/init.php 文件
找到(约122行)
if ($_CFG['shop_closed'] == 1)
{
/* 商店关闭了,输出关闭的消息 */
header('Content-type: text/html; charset='.EC_CHARSET);
die('<div style="margin: 150px; text-align: center; font-size: 14px"><p>' . $_LANG['shop_closed'] . '</p><p>' . $_CFG['close_comment'] . '</p></div>');
}
修改为
if ($_CFG['shop_closed'] == 1)
{
/* 商店关闭了,输出关闭的消息 */
if (!isset($_SESSION['admin_name']))
{
header('Content-type: text/html; charset='.EC_CHARSET);
die('<div style="margin: 150px; text-align: center; font-size: 14px"><p>' . $_LANG['shop_closed'] . '</p><p>' . $_CFG['close_comment'] . '</p></div>');
}
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!