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-04-30 22:06:47 +0400
committerKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-04-30 22:06:47 +0400
commit32e6c06324ff636281b901f9f1eae3f1d1a6367c (patch)
tree926051b9eac1ba10e74513aa8c81b92130a7cfc4 /tbl_get_field.php
parent618a37403afacea065c2c40f974bfde09fe51b5a (diff)
PMA_DBI_get_columns --> PMA_DBI_getColumns
Diffstat (limited to 'tbl_get_field.php')
-rw-r--r--tbl_get_field.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_get_field.php b/tbl_get_field.php
index a537a82d41..0f4b58d2b2 100644
--- a/tbl_get_field.php
+++ b/tbl_get_field.php
@@ -26,7 +26,7 @@ if (!PMA_DBI_select_db($db)) {
}
/* Check if table exists */
-if (!PMA_DBI_get_columns($db, $table)) {
+if (!PMA_DBI_getColumns($db, $table)) {
PMA_Util::mysqlDie(__('Invalid table name'));
}