Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChanaka Indrajith <pe.chanaka.ck@gmail.com>2012-10-31 22:14:46 +0400
committerChanaka Indrajith <pe.chanaka.ck@gmail.com>2012-10-31 22:14:46 +0400
commitf179e827fc41812390c0d00697130adb4b0b14c3 (patch)
treef750bd42e822452aa666361aea7efde0386232fb /tbl_export.php
parent5b820cf47af4d3807a43a67b3b51d5c471ee89bd (diff)
Improve comments description
Diffstat (limited to 'tbl_export.php')
-rw-r--r--tbl_export.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_export.php b/tbl_export.php
index b63a094e18..2158b7e869 100644
--- a/tbl_export.php
+++ b/tbl_export.php
@@ -39,10 +39,10 @@ if (! empty($sql_query)) {
$temp_sql_array = explode("where", strtolower($sql_query));
// The fields which is going to select will remain
- // as it is regardless of the where clause.
+ // as it is regardless of the where clause(s).
// EX :- The part "SELECT `id`, `name` FROM `customers`"
// will remain same when representing the resulted rows
- // from the following query
+ // from the following query,
// "SELECT `id`, `name` FROM `customers` WHERE id NOT IN
// ( SELECT id FROM companies WHERE name LIKE '%u%')"
$sql_query = $temp_sql_array[0];