Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 285 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 285 Rev 295
Line 81... Line 81...
81
	}
81
	}
Line 82... Line 82...
82
	
82
	
83
	public function controleAppelIpAutorisee() {
83
	public function controleAppelIpAutorisee() {
84
		$ips_autorisees = explode(',', $this->config['jrest_admin']['ip_autorisees']);
84
		$ips_autorisees = explode(',', $this->config['jrest_admin']['ip_autorisees']);
85
		$ip_appelante = $_SERVER['REMOTE_ADDR'];
85
		$ip_appelante = $_SERVER['REMOTE_ADDR'];
86
		if(!in_array($ip_appelante, $ips_autorisees) && $ip_appelante != $SERVER['SERVER_ADDR']) {
86
		if(!in_array($ip_appelante, $ips_autorisees) && $ip_appelante != $_SERVER['SERVER_ADDR']) {
87
			$this->envoyerMessageNonAutorise();
87
			$this->envoyerMessageNonAutorise();
88
		}
88
		}
89
		return true;
89
		return true;
90
	}
90
	}