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:
authorHugues Peccatte <hugues.peccatte@gmail.com>2015-08-29 23:29:21 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2015-09-01 22:30:21 +0300
commit0761fb18011d2d6b80d4894b2c2184afd503e717 (patch)
tree2a5cbbce31a8a9aa43b099090941350a11a8ee8f /tbl_replace.php
parent2606c5f72dabefe344a46b0e9c980fffb7437273 (diff)
Rename classes files.
Rename classes. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'tbl_replace.php')
-rw-r--r--tbl_replace.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_replace.php b/tbl_replace.php
index 7756db20a8..67779985bf 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -11,7 +11,7 @@
*
* @package PhpMyAdmin
*/
-use PMA\libraries\PMA_Table;
+use PMA\libraries\Table;
/**
* Gets some core libraries
@@ -422,7 +422,7 @@ if ($response->isAjax() && ! isset($_POST['ajax_page_request'])) {
);
/**Get the total row count of the table*/
- $_table = new PMA_Table($_REQUEST['table'], $_REQUEST['db']);
+ $_table = new Table($_REQUEST['table'], $_REQUEST['db']);
$extra_data['row_count'] = $_table->countRecords();
$extra_data['sql_query']