mirror of
https://github.com/vrana/adminer.git
synced 2025-08-10 00:28:34 +02:00
Allow to insert Tab in SQL textareas and send the form by Ctrl+Enter
This commit is contained in:
@@ -124,7 +124,7 @@ function html_select($name, $options, $value = "", $onchange = true) {
|
||||
* @return null
|
||||
*/
|
||||
function textarea($name, $value, $rows = 10, $cols = 80) {
|
||||
echo "<textarea name='$name' rows='$rows' cols='$cols' style='width: 98%;' spellcheck='false'>" . h($value) . "</textarea>"; // spellcheck - not valid before HTML5
|
||||
echo "<textarea name='$name' rows='$rows' cols='$cols' style='width: 98%;' spellcheck='false' onkeydown='return textareaKeydown(this, event);'>" . h($value) . "</textarea>"; // spellcheck - not valid before HTML5
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user