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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-07-21 09:06:08 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-07-21 09:06:08 +0300
commit0fe1547c6417304b4aef2e99dbc86d9e2113b3ec (patch)
tree7f342e891e427a42ad04730d9fb48ed7c87e2a13
parente8b47f75629752364f61cd63b64c7c4f5b1b795c (diff)
rtl languages have ~ after the row count for approximate row counts
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
-rw-r--r--libraries/structure.lib.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/structure.lib.php b/libraries/structure.lib.php
index ccadc0220c..d97cfadc55 100644
--- a/libraries/structure.lib.php
+++ b/libraries/structure.lib.php
@@ -195,7 +195,7 @@ function PMA_getHtmlBodyForTableSummary($num_tables, $server_slave_status,
}
$cell_text = ($approx_rows)
? '<a href="db_structure.php' . PMA_URL_getCommon($row_sum_url)
- . '" class="ajax row_count_sum">' . '~' . $row_count_sum . '</a>'
+ . '" class="ajax row_count_sum"><bdi>' . '~' . $row_count_sum . '</bdi></a>'
: $row_count_sum;
$html_output .= '<th class="value tbl_rows">'
. $cell_text
@@ -725,7 +725,7 @@ function PMA_getHtmlForNotNullEngineViewTable($table_is_view, $current_table,
// If row count is approximate, display it as an anchor to get real count.
$cell_text = (! empty($row_count_pre))
? '<a href="db_structure.php' . PMA_URL_getCommon($real_count_url)
- . '" class="ajax real_row_count">' . $row_count . '</a>'
+ . '" class="ajax real_row_count"><bdi>' . $row_count . '</bdi></a>'
: $row_count;
$html_output .= '<td class="value tbl_rows" data-table="'
. htmlspecialchars($current_table['TABLE_NAME']) . '">'