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:
Isaac Connor 2018-07-10 11:49:45 -04:00 committed by Isaac Connor
parent 46a496aefa
commit d05ad12b48
1 changed files with 1 additions and 1 deletions

View File

@ -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.