Revision 12e3e735
Added by Jim Pingle over 8 years ago
src/usr/local/www/system_certmanager.php | ||
---|---|---|
44 | 44 |
$altname_types = array("DNS", "IP", "email", "URI"); |
45 | 45 |
$openssl_digest_algs = array("sha1", "sha224", "sha256", "sha384", "sha512", "whirlpool"); |
46 | 46 |
|
47 |
if (isset($_REQUEST['userid']) && is_numericint(REQUEST['userid'])) { |
|
47 |
if (isset($_REQUEST['userid']) && is_numericint($_REQUEST['userid'])) {
|
|
48 | 48 |
$userid = $_REQUEST['userid']; |
49 | 49 |
} |
50 | 50 |
|
Also available in: Unified diff
Correct variable name. Fixes #7297