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:13:23 +0400
committerKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-05-04 07:13:23 +0400
commit2f0d55b708a02d52df9cd4f109be26d9539c07d8 (patch)
tree1a503b168f5e67bcfe0fb65d27fd41013457548b /tbl_zoom_select.php
parent63e0f33c4af39d2a6a8956cf566c0e496ec26fa7 (diff)
PMA_DBI_get_fields_meta --> PMA_DBI_getFieldsMeta
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 94a711f50c..8dd11b85fb 100644
--- a/tbl_zoom_select.php
+++ b/tbl_zoom_select.php
@@ -62,7 +62,7 @@ if (isset($_REQUEST['get_data_row']) && $_REQUEST['get_data_row'] == true) {
$row_info_query = 'SELECT * FROM `' . $_REQUEST['db'] . '`.`'
. $_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);
+ $fields_meta = PMA_DBI_getFieldsMeta($result);
while ($row = PMA_DBI_fetchAssoc($result)) {
// for bit fields we need to convert them to printable form
$i = 0;
@@ -139,7 +139,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);
+ $fields_meta = PMA_DBI_getFieldsMeta($result);
while ($row = PMA_DBI_fetchAssoc($result)) {
//Need a row with indexes as 0,1,2 for the getUniqueCondition
// hence using a temporary array