lip há 3 meses atrás
pai
commit
be6c8b43f2
1 ficheiros alterados com 1 adições e 1 exclusões
  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) {