Skip to content

Commit

Permalink
Merge branch 'master' of github.com:phpmyadmin/phpmyadmin
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Jan 17, 2017
2 parents 2eed93a + 9f2b392 commit dfa8b7e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -71,6 +71,7 @@ phpMyAdmin - ChangeLog
- issue #12859 Changed WHERE condition to 0 instead of 1 for SQL query window to avoid accidents
- issue #12872 Use same query for display and execution when dropping index
- issue #12868 Fix check for user groups freatures being enabled
- issue #12831 Fix table formatting on Insert tab, which mostly affected row highlighting

4.6.5.2 (2016-12-05)
- issue #12765 Fixed SQL export with newlines
Expand Down
11 changes: 0 additions & 11 deletions libraries/insert_edit.lib.php
Expand Up @@ -585,9 +585,6 @@ function PMA_getValueColumn($column, $backup_field, $column_name_appendix,
} elseif ($GLOBALS['cfg']['LongtextDoubleTextarea']
&& mb_strstr($column['pma_type'], 'longtext')
) {
$html_output = '&nbsp;</td>';
$html_output .= '</tr>';
$html_output .= '<tr>' . '<td colspan="5" class="right">';
$html_output .= PMA_getTextarea(
$column, $backup_field, $column_name_appendix, $onChangeClause,
$tabindex, $tabindex_for_value, $idindex, $text_dir,
Expand Down Expand Up @@ -2661,11 +2658,6 @@ function PMA_getHtmlForFunctionOption($column, $column_name_appendix)
$longDoubleTextArea = $GLOBALS['cfg']['LongtextDoubleTextarea'];
return '<tr class="noclick">'
. '<td '
. ($longDoubleTextArea
&& mb_strstr($column['True_Type'], 'longtext')
? 'rowspan="2"'
: ''
)
. 'class="center">'
. $column['Field_title']
. '<input type="hidden" name="fields_name' . $column_name_appendix
Expand Down Expand Up @@ -2939,9 +2931,6 @@ function PMA_getHtmlForInsertEditFormColumn($table_columns, $column_number,
$no_support_types, $gis_data_types, $extracted_columnspec, $readOnly
);
}
$html_output .= '</td>'
. '</tr>';

return $html_output;
}

Expand Down

0 comments on commit dfa8b7e

Please sign in to comment.