Fix merge conflict
Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
commit
780ff0217f
@ -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
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user