From b6ec86da7d807d7388e96a1b7d2a3f0fc5068f72 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 12 Jun 2008 20:00:23 +0000 Subject: [PATCH] remove old hint for number of tables --- navigation.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/navigation.php b/navigation.php index 5d0cd6f9a..ba2cd4502 100644 --- a/navigation.php +++ b/navigation.php @@ -319,6 +319,7 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) { */ $table_list = array_slice($table_list, $tpos, $cfg['MaxTableList']); if (! empty($table_list)) { + // upper table list paginator if (count($table_list) <= $GLOBALS['cfg']['MaxTableList'] && $table_count > $GLOBALS['cfg']['MaxTableList']) { $_url_params = array( 'tpos' => 'true', @@ -328,9 +329,8 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) { PMA_listNavigator($table_count, $tpos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxTableList']); } PMA_displayTableList($table_list, true, '', $GLOBALS['db']); - // hint user that the table list is larger + // lower table list paginator if (count($table_list) <= $GLOBALS['cfg']['MaxTableList'] && $table_count > $GLOBALS['cfg']['MaxTableList']) { - echo '  ( 1 .. ', $GLOBALS['cfg']['MaxTableList'], ' / ', $table_count, ' )'; PMA_listNavigator($table_count, $tpos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxTableList']); } } else {