lip 5 달 전
부모
커밋
be6c8b43f2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/common/middleware/CheckIp.php

+ 1 - 1
app/common/middleware/CheckIp.php

@@ -15,7 +15,7 @@ class CheckIp
             if(!in_array($ip, $whitelist)){
                 $blacklist = IpConfig::getBlacklist();
                 if(in_array($ip, $blacklist)){
-                    return shutdown(lang('user.ipError'), 10002);
+                    return shutdown(lang('system.ipError'), 10002);
                 }
             }
         } catch (Exception $exception) {