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:
authorMichal Čihař <mcihar@suse.cz>2011-08-04 19:00:32 +0400
committerMichal Čihař <mcihar@suse.cz>2011-08-04 19:00:32 +0400
commit87c970b0f8672b60eddab3950c4535ab29b2395c (patch)
treeb7e70e84519503dcf4f741627e7fd1448688470a /db_qbe.php
parent809258e49b328e0a074abdfd90859da8b843a55f (diff)
No need to load full columns here (need names only anyway)
Diffstat (limited to 'db_qbe.php')
-rw-r--r--db_qbe.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_qbe.php b/db_qbe.php
index 2ab7f272f3..93c5b40964 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -105,7 +105,7 @@ if (0 == $tbl_result_cnt) {
// The tables list gets from MySQL
while (list($tbl) = PMA_DBI_fetch_row($tbl_result)) {
- $fld_results = PMA_DBI_get_columns($db, $tbl, true);
+ $fld_results = PMA_DBI_get_columns($db, $tbl);
if (empty($tbl_names[$tbl]) && !empty($_REQUEST['TableList'])) {
$tbl_names[$tbl] = '';