Explorar el Código

edit blacklist debug message

CauseFX hace 4 años
padre
commit
14759615f5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      api/classes/organizr.class.php

+ 1 - 1
api/classes/organizr.class.php

@@ -188,7 +188,7 @@ class Organizr
 			$currentIP = $this->userIP();
 			if ($this->config['blacklisted'] !== '') {
 				if (in_array($currentIP, $this->arrayIP($this->config['blacklisted']))) {
-					$this->debug('User was sent to blackhole');
+					$this->debug('User was sent to blackhole - Blacklisted IPs: ' . $this->config['blacklisted']);
 					die($this->config['blacklistedMessage']);
 				}
 			}