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_chart.php
parent63e0f33c4af39d2a6a8956cf566c0e496ec26fa7 (diff)
PMA_DBI_get_fields_meta --> PMA_DBI_getFieldsMeta
Diffstat (limited to 'tbl_chart.php')
-rw-r--r--tbl_chart.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_chart.php b/tbl_chart.php
index d584ec646d..e68ba22796 100644
--- a/tbl_chart.php
+++ b/tbl_chart.php
@@ -103,7 +103,7 @@ if (strlen($GLOBALS['table'])) {
$data = array();
$result = PMA_DBI_tryQuery($sql_query);
-$fields_meta = PMA_DBI_get_fields_meta($result);
+$fields_meta = PMA_DBI_getFieldsMeta($result);
while ($row = PMA_DBI_fetchAssoc($result)) {
$data[] = $row;
}