lip vor 8 Monaten
Ursprung
Commit
be6c8b43f2
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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)){
             if(!in_array($ip, $whitelist)){
                 $blacklist = IpConfig::getBlacklist();
                 $blacklist = IpConfig::getBlacklist();
                 if(in_array($ip, $blacklist)){
                 if(in_array($ip, $blacklist)){
-                    return shutdown(lang('user.ipError'), 10002);
+                    return shutdown(lang('system.ipError'), 10002);
                 }
                 }
             }
             }
         } catch (Exception $exception) {
         } catch (Exception $exception) {