fixed bug #2648502 Request-URI Too Large error from Location header

This commit is contained in:
Herman van Rink
2009-03-03 12:10:50 +00:00
parent a09b9c2bb2
commit f37deec5a9
2 changed files with 3 additions and 3 deletions

View File

@@ -35,6 +35,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- patch #2652972 [relation] Missing code with hashing for relationship - patch #2652972 [relation] Missing code with hashing for relationship
editing, thanks to knittl - knittl editing, thanks to knittl - knittl
+ rfe #2123386 Added option to disable mcrypt warning. + rfe #2123386 Added option to disable mcrypt warning.
- bug #2648502 Request-URI Too Large error from Location header
3.1.4.0 (not yet released) 3.1.4.0 (not yet released)
+ patch #1808339 [doc] Apache SSLOptions and StdEnvVars FAQ, + patch #1808339 [doc] Apache SSLOptions and StdEnvVars FAQ,

View File

@@ -89,9 +89,8 @@ if (empty($is_table) && !defined('PMA_SUBMIT_MULT')) {
if (isset($display_query)) { if (isset($display_query)) {
$url_params['display_query'] = $display_query; $url_params['display_query'] = $display_query;
} }
PMA_sendHeaderLocation( require 'db_sql.php';
$cfg['PmaAbsoluteUri'] . 'db_sql.php' exit;
. PMA_generate_common_url($url_params, '&'));
} }
} }