From 43a4a042ceb3e5ae50313e7a7250f0513ab97e79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 25 Mar 2016 08:18:36 +0100 Subject: [PATCH] Fixed error in 3NF step of normalization MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #12121 Signed-off-by: Michal Čihař --- ChangeLog | 1 + normalization.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 155477318a..4568bce895 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog 4.6.1 (not yet released) - issue #12120 PMA_Util not found in insert_edit.lib.php - issue #12118 Fixed activation of some languages +- issue #12121 Fixed error in 3NF step of normalization 4.6.0.0 (2016-03-22) + issue #11456 Disabled storage engines 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;