1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-24 15:12:51 +02:00

Editor: Display field comment's text inside [] only in edit form

This commit is contained in:
Jakub Vrana
2017-10-01 08:45:17 -07:00
parent 75c0786d2e
commit 7bcba262df
5 changed files with 22 additions and 1 deletions

View File

@@ -626,6 +626,16 @@ focus(document.getElementById('username'));
return "";
}
/** Get hint for edit field
* @param string table name
* @param array single field from fields()
* @param string
* @return string
*/
function editHint($table, $field, $value) {
return "";
}
/** Process sent input
* @param array single field from fields()
* @param string

View File

@@ -920,6 +920,7 @@ function input($field, $value, $function) {
. "$attrs>"
;
}
echo $adminer->editHint($_GET["edit"], $field, $value);
}
}