Fix merge conflict

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2014-12-12 07:30:38 -05:00
commit 780ff0217f
2 changed files with 8 additions and 5 deletions

View File

@ -22,6 +22,7 @@ phpMyAdmin - ChangeLog
- bug #4638 Default Export Method setting broken
- bug #4639 Export SQL missing indentation first field
- bug #4637 Field Alignment
- bug #4644 Error when browsing tables
4.3.1.0 (2014-12-08)
- bug #4609 'Show all' checkbox label is not clickable

View File

@ -1820,11 +1820,13 @@ class PMA_Util
if ($suhosin_get_MaxValueLength) {
$query_parts = self::splitURLQuery($url);
foreach ($query_parts as $query_pair) {
list(, $eachval) = explode('=', $query_pair);
if (/*overload*/mb_strlen($eachval) > $suhosin_get_MaxValueLength
) {
$in_suhosin_limits = false;
break;
if (strpos($query_pair, '=') !== false) {
list(, $eachval) = explode('=', $query_pair);
if (/*overload*/mb_strlen($eachval) > $suhosin_get_MaxValueLength
) {
$in_suhosin_limits = false;
break;
}
}
}
}