Improved register_globals
This commit is contained in:
parent
2dd2b882ea
commit
31b22a148b
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@
|
||||||
<?
|
<?
|
||||||
loadem("index");
|
loadem("index");
|
||||||
|
|
||||||
$id = intval($_REQUEST['id']);
|
$id = array_key_exists('id',$_REQUEST)?intval($_REQUEST['id']):0;
|
||||||
|
|
||||||
showheader(_("Welcome to CAcert.org"));
|
showheader(_("Welcome to CAcert.org"));
|
||||||
includeit($id, "help");
|
includeit($id, "help");
|
||||||
|
|
Loading…
Reference in a new issue