mirror of
https://github.com/vrana/adminer.git
synced 2026-02-25 08:01:22 +01: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