Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate committed Jul 21, 2015
2 parents 19112a4 + 05dca3d commit 3f5e389
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/insert_edit.lib.php
Expand Up @@ -2612,7 +2612,7 @@ function PMA_getHtmlForFunctionOption($odd_row, $column, $column_name_appendix)
function PMA_getHtmlForInsertEditColumnType($column)
{
return '<td class="center' . $column['wrap'] . '">'
. '<span class="column_type">' . $column['pma_type'] . '</span>'
. '<span class="column_type" dir="ltr">' . $column['pma_type'] . '</span>'
. '</td>';

}
Expand Down
2 changes: 1 addition & 1 deletion templates/table/rows_normal.phtml
Expand Up @@ -20,7 +20,7 @@ for (
<?php echo htmlspecialchars($columnNames[$column_index]); ?>
</th>
<?php $properties = $self->getColumnProperties($column_index, $column_index); ?>
<td>
<td dir="ltr">
<?php echo htmlspecialchars($properties['type']); ?>
</td>
<td>
Expand Down
2 changes: 1 addition & 1 deletion templates/table/rows_zoom.phtml
Expand Up @@ -55,7 +55,7 @@ for ($i = 0; $i < 4; $i++): ?>
$value[$i] = $properties['value'];
} ?>
<!-- Column type -->
<td>
<td dir="ltr">
<?php echo (isset($type[$i]) ? $type[$i] : ''); ?>
</td>
<!-- Column Collation -->
Expand Down

0 comments on commit 3f5e389

Please sign in to comment.