Merge branch 'QA_4_3'
This commit is contained in:
commit
a9321f15d5
@ -75,6 +75,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #4584 Edit dialog for routines is too long for smaller displays
|
||||
- bug #4586 Javascript error after moving a column
|
||||
- bug #4576 Issue with long comments on table columns
|
||||
- bug #4599 Input field unnecessarily selected on focus
|
||||
|
||||
4.2.11.0 (2014-10-31)
|
||||
- bug ReferenceError: Table_onover is not defined
|
||||
|
||||
@ -662,7 +662,7 @@ function PMA_getHtmlForMoveTable()
|
||||
}
|
||||
$html_output .= ' <strong>.</strong> ';
|
||||
$html_output .= '<input class="halfWidth" type="text" size="20" name="new_name"'
|
||||
. ' onfocus="this.select()" required="required" '
|
||||
. ' required="required" '
|
||||
. 'value="' . htmlspecialchars($GLOBALS['table']) . '" /><br />';
|
||||
|
||||
// starting with MySQL 5.0.24, SHOW CREATE TABLE includes the AUTO_INCREMENT
|
||||
@ -765,7 +765,7 @@ function PMA_getTableOptionFieldset($comment, $tbl_collation,
|
||||
//Change table name
|
||||
$html_output .= '<tr><td>' . __('Rename table to') . '</td>'
|
||||
. '<td>'
|
||||
. '<input type="text" size="20" name="new_name" onfocus="this.select()"'
|
||||
. '<input type="text" size="20" name="new_name" '
|
||||
. 'value="' . htmlspecialchars($GLOBALS['table'])
|
||||
. '" required="required" />'
|
||||
. '</td>'
|
||||
@ -774,7 +774,7 @@ function PMA_getTableOptionFieldset($comment, $tbl_collation,
|
||||
//Table comments
|
||||
$html_output .= '<tr><td>' . __('Table comments') . '</td>'
|
||||
. '<td><input type="text" name="comment" maxlength="60" size="30"'
|
||||
. 'value="' . htmlspecialchars($comment) . '" onfocus="this.select()" />'
|
||||
. 'value="' . htmlspecialchars($comment) . '" />'
|
||||
. '<input type="hidden" name="prev_comment" value="'
|
||||
. htmlspecialchars($comment) . '" />'
|
||||
. '</td>'
|
||||
@ -995,7 +995,7 @@ function PMA_getHtmlForCopytable()
|
||||
}
|
||||
$html_output .= ' <strong>.</strong> ';
|
||||
$html_output .= '<input class="halfWidth" type="text" required="required" '
|
||||
. 'size="20" name="new_name" onfocus="this.select()" '
|
||||
. 'size="20" name="new_name" '
|
||||
. 'value="' . htmlspecialchars($GLOBALS['table']) . '"/><br />';
|
||||
|
||||
$choices = array(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user