fix bug #621295 (Incorrect URL)

This commit is contained in:
Loïc Chapeaux
2002-10-11 12:27:47 +00:00
parent 03cd0bdc14
commit 5a10d1b73f
3 changed files with 10 additions and 6 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2002-10-11 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* tbl_indexes.php3: fixed bug #621295 (Incorrect URL)
* db_details_structure.php3: removed trailing whitespaces.
2002-10-10 Michal Cihar <nijel@users.sourceforge.net> 2002-10-10 Michal Cihar <nijel@users.sourceforge.net>
* libraries/auth/config.auth.lib.php3: bug #620624 - displaying password * libraries/auth/config.auth.lib.php3: bug #620624 - displaying password
from config when MySQL connection can't be established from config when MySQL connection can't be established

View File

@@ -173,14 +173,14 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
} }
//$display_rows = '&nbsp;-&nbsp;'; //$display_rows = '&nbsp;-&nbsp;';
// get row count with another method // get row count with another method
$local_query = 'SELECT COUNT(*) AS count FROM ' $local_query = 'SELECT COUNT(*) AS count FROM '
. PMA_backquote($db) . '.' . PMA_backquote($db) . '.'
. PMA_backquote($table); . PMA_backquote($table);
$table_info_result = PMA_mysql_query($local_query) $table_info_result = PMA_mysql_query($local_query)
or PMA_mysqlDie('', $local_query, '', $err_url_0); or PMA_mysqlDie('', $local_query, '', $err_url_0);
$row_count = PMA_mysql_result($table_info_result, 0, 'count'); $row_count = PMA_mysql_result($table_info_result, 0, 'count');
$sum_entries += $row_count; $sum_entries += $row_count;
$display_rows = number_format($row_count, 0, $number_decimal_separator, $number_thousands_separator); $display_rows = number_format($row_count, 0, $number_decimal_separator, $number_thousands_separator);
} }
// Merge or BerkleyDB table: Only row count is accurate. // Merge or BerkleyDB table: Only row count is accurate.

View File

@@ -347,7 +347,7 @@ else if (!defined('PMA_IDX_INCLUDED')
} // end for } // end for
?> ?>
</select>&nbsp; </select>&nbsp;
<?php echo PMA_showMySQLDocu('Reference', 'ALTER_TABLE.html') . "\n"; ?> <?php echo PMA_showMySQLDocu('Reference', 'ALTER_TABLE') . "\n"; ?>
</td> </td>
</tr> </tr>
</table><br /> </table><br />