Properly test if FCGI is calling or are being triggered from shell. Normally Fixes #3361

This commit is contained in:
Ermal 2014-11-01 18:56:36 +01:00
parent 9fdc167f4e
commit f3dd7e8cdb
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ if ((empty($curwanipv6) || !is_ipaddrv6($curwanipv6)) && substr($interface_real,
return;
}
if (isset($_GET))
if (isset($_GET['dmips']))
$new_domain_name_servers = $_GET['dmips'];
else
$new_domain_name_servers = getenv("new_domain_name_servers");
@ -109,7 +109,7 @@ if (!empty($new_domain_name_servers)) {
if (count($valid_ns > 0))
file_put_contents("{$g['varetc_path']}/nameserver_v6{$interface}", implode("\n", $valid_ns));
}
if (isset($_GET))
if (isset($_GET['dmnames']))
$new_domain_name = $_GET['dmnames'];
else
$new_domain_name = getenv("new_domain_name");