... wrong file, fixing previous commit r10370

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10372 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Nils Adermann 2009-12-23 02:58:53 +00:00
parent 736f26dea1
commit a7ecefd89d

View file

@ -167,7 +167,7 @@ class phpbb_questionnaire_system_data_provider
'httpd' => $_SERVER['SERVER_SOFTWARE'], 'httpd' => $_SERVER['SERVER_SOFTWARE'],
// we don't want the real IP address (for privacy policy reasons) but only // we don't want the real IP address (for privacy policy reasons) but only
// a network address to see whether your installation is running on a private or public network. // a network address to see whether your installation is running on a private or public network.
'private_ip' => is_private_ip($server_address), 'private_ip' => $this->is_private_ip($server_address),
'ipv6' => strpos($server_address, ':') !== false, 'ipv6' => strpos($server_address, ':') !== false,
); );
} }