mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 00:16:46 +02:00
"MDL-19037, use getremoteaddr to get remote ip address"
This commit is contained in:
parent
224eccbfe2
commit
b8aa76c1a4
5 changed files with 5 additions and 5 deletions
|
@ -1807,7 +1807,7 @@ class auth_plugin_ldap extends auth_plugin_base {
|
|||
&& !empty($this->config->ntlmsso_subnet) // have a subnet to test for
|
||||
&& empty($_GET['authldap_skipntlmsso']) // haven't failed it yet
|
||||
&& (isguestuser() || !isloggedin()) // guestuser or not-logged-in users
|
||||
&& address_in_subnet($_SERVER['REMOTE_ADDR'], $this->config->ntlmsso_subnet)) {
|
||||
&& address_in_subnet(getremoteaddr(), $this->config->ntlmsso_subnet)) {
|
||||
|
||||
// First, let's remember where we were trying to get to before we got here
|
||||
if (empty($SESSION->wantsurl)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue