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-11-01 21:57:51 +0400
committerChanaka Indrajith <pe.chanaka.ck@gmail.com>2012-11-01 21:57:51 +0400
commite78bde8978b07d4fdb22e2435015332ed5647103 (patch)
tree817c821518f4c45a9f05095d512d9892965eb65f /tbl_export.php
parent843b21b3009b71865381f17b8d72ddc417cd1b5d (diff)
parent6dba4654e40064cce7659160a28e32a0add4db4b (diff)
Merge branch 'QA_3_5'
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 146be7e133..74443c513f 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
+ // The fields which is going to select will be remain
// 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
+ // will be remain same when representing the resulted rows
// from the following query,
// "SELECT `id`, `name` FROM `customers` WHERE id NOT IN
// ( SELECT id FROM companies WHERE name LIKE '%u%')"