Fix: register_globals=off
This commit is contained in:
parent
dcd22f962e
commit
99ef7176fd
@ -30,15 +30,15 @@ llxHeader();
|
|||||||
|
|
||||||
ob_start();
|
ob_start();
|
||||||
|
|
||||||
if ($what == 'conf')
|
if ($_GET["what"] == 'conf')
|
||||||
{
|
{
|
||||||
phpinfo(INFO_CONFIGURATION);
|
phpinfo(INFO_CONFIGURATION);
|
||||||
}
|
}
|
||||||
elseif ($what == 'env')
|
elseif ($_GET["what"] == 'env')
|
||||||
{
|
{
|
||||||
phpinfo(INFO_ENVIRONMENT);
|
phpinfo(INFO_ENVIRONMENT);
|
||||||
}
|
}
|
||||||
elseif ($what == 'modules')
|
elseif ($_GET["what"] == 'modules')
|
||||||
{
|
{
|
||||||
phpinfo(INFO_MODULES);
|
phpinfo(INFO_MODULES);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user