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:
authorAtul Pratap Singh <atulpratapsingh05@gmail.com>2012-07-10 19:25:21 +0400
committerAtul Pratap Singh <atulpratapsingh05@gmail.com>2012-07-10 19:25:21 +0400
commit664e2d46a62360f85f71bb7994c72e33f075cde1 (patch)
tree029589010c3b65460f02f07d90023be86a59c636 /db_qbe.php
parent33171f2f41493063655d06a0b7ed68fbb395a028 (diff)
Add missing return statement
Diffstat (limited to 'db_qbe.php')
-rw-r--r--db_qbe.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/db_qbe.php b/db_qbe.php
index cd92136cf0..55d674208c 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -656,8 +656,9 @@ function PMA_dbQbeGetWhereClause($criteria_column_count, $criteria_row_count) {
} // end for
if (! empty($where_clause) && $where_clause != '()') {
- echo 'WHERE ' . htmlspecialchars($where_clause) . "\n";
+ $where_clause = 'WHERE ' . htmlspecialchars($where_clause) . "\n";
} // end if
+ return $where_clause;
}
if ($cfgRelation['designerwork']) {