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:
authorMichal Čihař <michal@cihar.com>2016-03-25 10:18:36 +0300
committerMichal Čihař <michal@cihar.com>2016-03-25 10:18:36 +0300
commit43a4a042ceb3e5ae50313e7a7250f0513ab97e79 (patch)
treebc8979106538f718956ff320af218eb6df906115 /normalization.php
parent370620a868b5cb373abb250a9e7453c567dd4664 (diff)
Fixed error in 3NF step of normalization
Fixes #12121 Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'normalization.php')
-rw-r--r--normalization.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/normalization.php b/normalization.php
index 0160f31c1e..8ebbf4244b 100644
--- a/normalization.php
+++ b/normalization.php
@@ -59,7 +59,7 @@ if (isset($_REQUEST['getNewTables3NF'])) {
$dependencies = json_decode($_REQUEST['pd']);
$tables = json_decode($_REQUEST['tables']);
$newTables = PMA_getHtmlForNewTables3NF($dependencies, $tables, $db);
- PMA_Response::getInstance()->disable();
+ PMA\libraries\Response::getInstance()->disable();
PMA_headerJSON();
echo json_encode($newTables);
exit;