From 54398f8a124702e30820bc4636040dda1db6b71b Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Fri, 22 Jul 2011 02:01:17 +0200 Subject: [PATCH] Do not call PMA_showHint with bbcode=true in display_tbl.lib.php This fixes an issue with an InnoDB-table on sql.php with "select * from tbl" showing that "total ~ N 1" rows are displayed and with a JavaScript enabled browser the footnote gets hidden and it's impossible to find out what the 1 means. Signed-off-by: Sven Strickroth --- libraries/display_tbl.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index c7d74ef44..c87161214 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1937,7 +1937,7 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql) || $analyzed_sql[0]['where_clause'] == '1 ')) { // "j u s t b r o w s i n g" $pre_count = '~'; - $after_count = PMA_showHint(PMA_sanitize(__('May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]')), true); + $after_count = PMA_showHint(PMA_sanitize(__('May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]'))); } else { $pre_count = ''; $after_count = '';