From d84dc8ce34dd37719ae3b82f660c51f9beb4d6d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Wed, 19 Dec 2001 22:41:23 +0000 Subject: [PATCH] fixed bug #495105 - FULLTEXT feature with WHERE clause --- libraries/display_tbl.lib.php3 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libraries/display_tbl.lib.php3 b/libraries/display_tbl.lib.php3 index 20ea84f48..fe25fa61d 100644 --- a/libraries/display_tbl.lib.php3 +++ b/libraries/display_tbl.lib.php3 @@ -382,7 +382,6 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){ * @param array which elements to display * @param array the list of fields properties * @param integer the total number of fields returned by the sql query - * @param string the url-encoded sql query * * @return boolean always true * @@ -406,7 +405,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){ * * @see PMA_displayTable() */ - function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $encoded_query = '') + function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0) { global $lang, $server, $db, $table; global $goto; @@ -434,7 +433,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){ . '&server=' . $server . '&db=' . urlencode($db) . '&table=' . urlencode($table) - . '&sql_query=' . $encoded_query + . '&sql_query=' . urlencode($sql_query) . '&pos=' . $pos . '&session_max_rows=' . $session_max_rows . '&pos=' . $pos @@ -1218,7 +1217,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){