From a1a2f1857a8d72948ce013a338340bab83bb99c0 Mon Sep 17 00:00:00 2001 From: Atul Pratap Singh Date: Sat, 2 Jun 2012 10:40:23 +0530 Subject: [PATCH] Fix some typos in tbl_select.lib.php --- libraries/tbl_select.lib.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/tbl_select.lib.php b/libraries/tbl_select.lib.php index 5075d32842..d5a967fba8 100644 --- a/libraries/tbl_select.lib.php +++ b/libraries/tbl_select.lib.php @@ -471,7 +471,7 @@ function PMA_tblSearchGenerateWhereClause() return $fullWhereClause; } - // If there are no search criterias set, return + // If there are no search criteria set, return if (! array_filter($_POST['criteriaValues'])) { return $fullWhereClause; } @@ -675,7 +675,7 @@ function PMA_tblSearchGetFieldsTableHtml($db, $table, $columnNames, $columnTypes ); $html_output .= ''; /** - * Displays column's foreign relations if any + * Displays link to browse foreign data(if any) and criteria inputbox */ $html_output .= ''; $field = $columnNames[$column_index]; @@ -733,7 +733,7 @@ function PMA_tblSearchGetSelectionForm($goto, $db, $table, $columnNames, $column . '' . __('Do a "query by example" (wildcard: "%")') . ''; /** - * Displays table fields + * Displays fields table in search form */ $html_output .= PMA_tblSearchGetFieldsTableHtml( $db, $table, $columnNames, $columnTypes, $columnCollations, $columnNullFlags, @@ -745,7 +745,7 @@ function PMA_tblSearchGetSelectionForm($goto, $db, $table, $columnNames, $column . ''; /** - * Displays slider options form + * Displays more search options */ $html_output .= PMA_tblSearchGetOptions($columnNames, $columnCount);