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
46a496aefa
commit
d05ad12b48
|
@ -173,7 +173,7 @@ if ( !empty($_REQUEST['preset']) ) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( !empty($_REQUEST['probe']) ) {
|
if ( !empty($_REQUEST['probe']) ) {
|
||||||
$probe = unserialize(base64_decode($_REQUEST['probe']));
|
$probe = unserialize($_REQUEST['probe']);
|
||||||
foreach ( $probe as $name=>$value ) {
|
foreach ( $probe as $name=>$value ) {
|
||||||
if ( isset($value) ) {
|
if ( isset($value) ) {
|
||||||
# Does isset handle NULL's? I don't think this code is correct.
|
# Does isset handle NULL's? I don't think this code is correct.
|
||||||
|
|
Loading…
Reference in New Issue