Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2015-07-21 11:28:23 +0300
committerWeblate <noreply@weblate.org>2015-07-21 11:28:23 +0300
commit3f5e389d11f9ac6440447d6bea48e50ecd1f2a64 (patch)
tree49ac1072037a42f2c184a05993436fb2726f93af
parent19112a440977f2230efcac51ab651a70ff252185 (diff)
parent05dca3d776312e9772f344eca06cf706488f01a6 (diff)
Merge remote-tracking branch 'origin/master'
-rw-r--r--libraries/insert_edit.lib.php2
-rw-r--r--templates/table/rows_normal.phtml2
-rw-r--r--templates/table/rows_zoom.phtml2
3 files changed, 3 insertions, 3 deletions
diff --git a/libraries/insert_edit.lib.php b/libraries/insert_edit.lib.php
index b3c95f505d..09d2ba7241 100644
--- a/libraries/insert_edit.lib.php
+++ b/libraries/insert_edit.lib.php
@@ -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>';
}
diff --git a/templates/table/rows_normal.phtml b/templates/table/rows_normal.phtml
index 4c0cc11f72..8cac7af1d1 100644
--- a/templates/table/rows_normal.phtml
+++ b/templates/table/rows_normal.phtml
@@ -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>
diff --git a/templates/table/rows_zoom.phtml b/templates/table/rows_zoom.phtml
index be6832c642..06550cf4e8 100644
--- a/templates/table/rows_zoom.phtml
+++ b/templates/table/rows_zoom.phtml
@@ -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 -->