mirror of
https://github.com/vrana/adminer.git
synced 2025-08-09 16:17:48 +02:00
Replace isset($var) by $var !== null
This commit is contained in:
@@ -16,7 +16,7 @@ class AdminerEnumOption {
|
||||
}
|
||||
if ($field["null"]) {
|
||||
$options[""][""] = "NULL";
|
||||
if (!isset($value) && !isset($_GET["select"])) {
|
||||
if ($value === null && !isset($_GET["select"])) {
|
||||
$selected = "";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user