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:
authorKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-05-04 07:00:12 +0400
committerKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-05-04 07:00:12 +0400
commit5bcc32999f64d60bb9015a3aec5f5fe6518cce80 (patch)
treeb8b09a0b8b86c7e9e754f4e41f0677ca39e138f1 /tbl_zoom_select.php
parent2a2eac9b53533b3222d6196926f8b567a41afe21 (diff)
PMA_DBI_fetch_assoc --> PMA_DBI_fetchAssoc
Diffstat (limited to 'tbl_zoom_select.php')
-rw-r--r--tbl_zoom_select.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_zoom_select.php b/tbl_zoom_select.php
index f2ab6e6b41..94a711f50c 100644
--- a/tbl_zoom_select.php
+++ b/tbl_zoom_select.php
@@ -63,7 +63,7 @@ if (isset($_REQUEST['get_data_row']) && $_REQUEST['get_data_row'] == true) {
. $_REQUEST['table'] . '` WHERE ' . $_REQUEST['where_clause'];
$result = PMA_DBI_query($row_info_query . ";", null, PMA_DBI_QUERY_STORE);
$fields_meta = PMA_DBI_get_fields_meta($result);
- while ($row = PMA_DBI_fetch_assoc($result)) {
+ while ($row = PMA_DBI_fetchAssoc($result)) {
// for bit fields we need to convert them to printable form
$i = 0;
foreach ($row as $col => $val) {
@@ -140,7 +140,7 @@ if (isset($zoom_submit)
//Query execution part
$result = PMA_DBI_query($sql_query . ";", null, PMA_DBI_QUERY_STORE);
$fields_meta = PMA_DBI_get_fields_meta($result);
- while ($row = PMA_DBI_fetch_assoc($result)) {
+ while ($row = PMA_DBI_fetchAssoc($result)) {
//Need a row with indexes as 0,1,2 for the getUniqueCondition
// hence using a temporary array
$tmpRow = array();