We no longer base64_encode the probe data, we just use htmlspecialchars, so don't base64_decode it. Fixes #2148
This commit is contained in:
parent
13055bdda6
commit
7ed316d3a5
|
@ -173,7 +173,7 @@ if ( !empty($_REQUEST['preset']) ) {
|
|||
}
|
||||
}
|
||||
if ( !empty($_REQUEST['probe']) ) {
|
||||
$probe = unserialize(base64_decode($_REQUEST['probe']));
|
||||
$probe = unserialize($_REQUEST['probe']);
|
||||
foreach ( $probe as $name=>$value ) {
|
||||
if ( isset($value) ) {
|
||||
# Does isset handle NULL's? I don't think this code is correct.
|
||||
|
|
Loading…
Reference in New Issue