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:
authorMarcel Tschopp <ne0x@users.sourceforge.net>2004-04-10 20:19:21 +0400
committerMarcel Tschopp <ne0x@users.sourceforge.net>2004-04-10 20:19:21 +0400
commit4e62f7658fd35189fd8f7f88840f6e30467f9ce8 (patch)
treeffec1f82168e27b9940e4803378f3d61d4d0fe67 /pdf_pages.php
parentb2e31286342f234a9156d72d19ad1fa7f4eaca06 (diff)
Changed some queries to use MYSQLI_STORE_RESULT.
phpMyAdmin now works with MYSQLI_USE_RESULT as default.
Diffstat (limited to 'pdf_pages.php')
-rw-r--r--pdf_pages.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf_pages.php b/pdf_pages.php
index 8bda7724e4..e78c59d8d3 100644
--- a/pdf_pages.php
+++ b/pdf_pages.php
@@ -221,7 +221,7 @@ if ($cfgRelation['pdfwork']) {
// We will need an array of all tables in this db
$selectboxall = array('--');
- $alltab_rs = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';');
+ $alltab_rs = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', NULL, PMA_DBI_QUERY_STORE);
while ($val = @PMA_DBI_fetch_row($alltab_rs)) {
$selectboxall[] = $val[0];
}