Improved register_globals handling
This commit is contained in:
parent
9fff586518
commit
5e2319f7b6
1 changed files with 1 additions and 1 deletions
|
@ -984,7 +984,7 @@
|
|||
{
|
||||
$id = 5;
|
||||
showheader(_("My CAcert.org Account!"));
|
||||
if(is_array($_REQUEST['revokeid']))
|
||||
if(array_key_exists('revokeid',$_REQUEST) && is_array($_REQUEST['revokeid']))
|
||||
{
|
||||
echo _("Now revoking the following certificates:")."<br>\n";
|
||||
foreach($_REQUEST['revokeid'] as $id)
|
||||
|
|
Loading…
Reference in a new issue