NULL instead ORIGINAL on ENUM field when you edit several registries at once
Database management in a single PHP file
Brought to you by:
jakubvrana
The situation is as follows:
Bugged file is enum-option.php. When you remove this plugin, the error disapear.
Last edit: Marcelo 2016-02-01
I couldn't reproduce it and I think it was already fixed.
SOLVED!
In enum-option.php, just insert the following command right after the line containing "$options[""][-1] = lang('original');":
$selected = "-1";
When adminer is in multiple-fields-edit-mode (or isset($_GET["select"])), the $selected is set to null by default ($value parameter) and it's value wasn't updated when "original" option was generated.