Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
cb51e53690
@ -45,6 +45,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #4054 query analysis doesn't launch in status monitor
|
||||
+ Add pmahomme icon credits (FamFamFam silk icon set)
|
||||
- bug #4064 Table structure statistics "Space usage" caption too small for l10n
|
||||
- bug #4051 Wrong tabindex when inserting rows
|
||||
|
||||
4.0.5.0 (2013-08-04)
|
||||
- bug #3977 Not detected configuration storage
|
||||
|
||||
@ -477,14 +477,14 @@ AJAX.registerOnload('tbl_change.js', function () {
|
||||
// IMO it's not really important to handle the tabindex for
|
||||
// function and Null
|
||||
var tabindex = 0;
|
||||
$('.textfield')
|
||||
$('.textfield, .char')
|
||||
.each(function () {
|
||||
tabindex++;
|
||||
$(this).attr('tabindex', tabindex);
|
||||
// update the IDs of textfields to ensure that they are unique
|
||||
$(this).attr('id', "field_" + tabindex + "_3");
|
||||
});
|
||||
$('select.control_at_footer')
|
||||
$('.control_at_footer')
|
||||
.each(function () {
|
||||
tabindex++;
|
||||
$(this).attr('tabindex', tabindex);
|
||||
|
||||
@ -1527,7 +1527,7 @@ function PMA_getSubmitTypeDropDown($where_clause, $tabindex, $tabindex_for_value
|
||||
*/
|
||||
function PMA_getAfterInsertDropDown($where_clause, $after_insert, $found_unique_key)
|
||||
{
|
||||
$html_output = '<select name="after_insert">'
|
||||
$html_output = '<select name="after_insert" class="control_at_footer">'
|
||||
. '<option value="back" '
|
||||
. ($after_insert == 'back' ? 'selected="selected"' : '') . '>'
|
||||
. __('Go back to previous page') . '</option>'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user