diff --git a/functions.php b/functions.php index 885505c92..9cb986251 100644 --- a/functions.php +++ b/functions.php @@ -1896,8 +1896,10 @@ print ""; if ($_SESSION["stored-params"]) { foreach (array_keys($_SESSION["stored-params"]) as $key) { - $value = htmlspecialchars($_SESSION["stored-params"][$key]); - print ""; + if ($key) { + $value = htmlspecialchars($_SESSION["stored-params"][$key]); + print ""; + } } }