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:
authorMarc Delisle <marc@infomarc.info>2012-02-17 18:25:45 +0400
committerMarc Delisle <marc@infomarc.info>2012-02-17 18:25:45 +0400
commit87183ee0e1c7ffcce02b6e6bc2e530f13f96d3aa (patch)
treee362e5e1b9e324759799c3d9a5db285ce4adcbee /db_structure.php
parent4bc976136f1572eac03d1959a181fbde49629e9c (diff)
Remove BLOBstreaming support; will need to run update-po after releasing version 3.5
Diffstat (limited to 'db_structure.php')
-rw-r--r--db_structure.php16
1 files changed, 2 insertions, 14 deletions
diff --git a/db_structure.php b/db_structure.php
index 2ddf775b96..14586833b5 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -125,14 +125,7 @@ $hidden_fields = array();
$odd_row = true;
$sum_row_count_pre = '';
-$tableReductionCount = 0; // the amount to reduce the table count by
-
foreach ($tables as $keyname => $each_table) {
- if (PMA_BS_IsHiddenTable($keyname)) {
- $tableReductionCount++;
- continue;
- }
-
// Get valid statistics whatever is the table type
$table_is_view = false;
@@ -505,14 +498,9 @@ if ($is_show_stats) {
<tr><th></th>
<th align="center" nowrap="nowrap" class="tbl_num">
<?php
- // for blobstreaming - if the number of tables is 0, set tableReductionCount to 0
- // (we don't want negative numbers here)
- if ($num_tables == 0) {
- $tableReductionCount = 0;
- }
echo sprintf(
- _ngettext('%s table', '%s tables', $num_tables - $tableReductionCount),
- PMA_formatNumber($num_tables - $tableReductionCount, 0)
+ _ngettext('%s table', '%s tables', $num_tables),
+ PMA_formatNumber($num_tables, 0)
);
?>
</th>