标签:
打开\phpcms\modules\admin\index.php
替换前
$code = isset($_POST[‘code‘]) && trim($_POST[‘code‘]) ? trim($_POST[‘code‘]) : showmessage(L(‘input_code‘), HTTP_REFERER);
if ($_SESSION[‘code‘] != strtolower($code)) {
showmessage(L(‘code_error‘), HTTP_REFERER);
}
替换后
//$code = isset($_POST[‘code‘]) && trim($_POST[‘code‘]) ? trim($_POST[‘code‘]) : showmessage(L(‘input_code‘), HTTP_REFERER);
//if ($_SESSION[‘code‘] != strtolower($code)) {
//showmessage(L(‘code_error‘), HTTP_REFERER);
//}
标签:
原文地址:http://www.cnblogs.com/vinna/p/4520010.html