The branch, QA_3_4 has been updated via 08ee54d4a43b1bd6eff1e6695ff8553e6f26b37a (commit) from 3534dda30a587eafe3bf5016f2fb302dbc224c2e (commit)
- Log ----------------------------------------------------------------- -----------------------------------------------------------------------
Summary of changes: ChangeLog | 1 + libraries/config.default.php | 5 ++++- 2 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 02db31c..551eb8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -18,6 +18,7 @@ phpMyAdmin - ChangeLog - bug #3374374 [interface] Fix footnote for inexact count while browsing - bug #3372807 [interface] Fix security warning link in setup - bug #3374347 [display] Backquotes in normal text on import page +- bug #3358750 [core] With Suhosin, urls are too long in edit links
3.4.3.2 (2011-07-23) - [security] Fixed XSS vulnerability, see PMASA-2011-9 diff --git a/libraries/config.default.php b/libraries/config.default.php index 4ca31e7..4040acf 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2596,8 +2596,11 @@ $cfg['CheckConfigurationPermissions'] = true; * Limit for length of URL in links. When length would be above this limit, it * is replaced by form with button. * This is required as some web servers (IIS) have problems with long URLs. + * The recommended limit is 2000 + * (see http://www.boutell.com/newfaq/misc/urllength.html) but we put + * 1000 to accommodate Suhosin, see bug #3358750. */ -$cfg['LinkLengthLimit'] = 2000; +$cfg['LinkLengthLimit'] = 1000;
/******************************************************************************* * SQL Parser Settings
hooks/post-receive