From fd69139efdf6fe589d0c07ec2cdb0552991fd60e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 5 Nov 2012 08:21:42 -0500 Subject: [PATCH] bug #3582631 [core] Wrong redirect url caused cookies error with ForceSSL --- ChangeLog | 1 + libraries/common.inc.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ffc1f797ef..255cb08892 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog - bug #3577468 [display] Incorrect imagejpeg Syntax Breaks Image Transformation - bug #3578776 [search] Editing SQL not possible when no records found - bug #3571970 [interface] Display chart and number of rows to plot +- bug #3582631 [core] Wrong redirect url caused cookies error with ForceSSL 3.5.3.0 (2012-10-08) - bug #3539044 [interface] Browse mode "Show" button gives blank page if no results anymore diff --git a/libraries/common.inc.php b/libraries/common.inc.php index c0d52dea43..5c25a7a9cf 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -351,7 +351,7 @@ if ($GLOBALS['PMA_Config']->get('ForceSSL') } else { $port_number = 443; } - $url = 'https://' . $parsed['host'] . ':' . $port_number . '/' . $parsed['path']; + $url = 'https://' . $parsed['host'] . ':' . $port_number . $parsed['path']; } // Actually redirect PMA_sendHeaderLocation($url . PMA_generate_common_url($_GET, 'text'));