File: includes/questionnaire/questionnaire.php
Unmodified
Added
Modified
Removed
Line 150 | Line 150 |
---|
// Start discovering the IPV4 server address, if available // Try apache, IIS, fall back to 0.0.0.0
|
// Start discovering the IPV4 server address, if available // Try apache, IIS, fall back to 0.0.0.0
|
$server_address = htmlspecialchars_decode($request->server('SERVER_ADDR', $request->server('LOCAL_ADDR', '0.0.0.0')), ENT_COMPAT);
| $server_address = html_entity_decode($request->server('SERVER_ADDR', $request->server('LOCAL_ADDR', '0.0.0.0')), ENT_COMPAT);
|
return array( 'os' => PHP_OS,
|
return array( 'os' => PHP_OS,
|
'httpd' => htmlspecialchars_decode($request->server('SERVER_SOFTWARE'), ENT_COMPAT),
| 'httpd' => html_entity_decode($request->server('SERVER_SOFTWARE'), ENT_COMPAT),
|
// 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. 'private_ip' => $this->is_private_ip($server_address),
| // 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. 'private_ip' => $this->is_private_ip($server_address),
|