Fix input onchange

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1473 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2010-04-22 00:33:46 +00:00
parent b84252fc51
commit 02f752142d

View file

@ -396,7 +396,7 @@ class Adminer {
*/
function editFunctions($field) {
global $edit_functions;
$return = ($field["null"] ? "/NULL" : "");
$return = ($field["null"] ? "NULL/" : "");
foreach ($edit_functions as $key => $functions) {
if (!$key || (!isset($_GET["call"]) && (isset($_GET["select"]) || where($_GET)))) { // relative functions
foreach ($functions as $pattern => $val) {