Skip to content

Commit

Permalink
Fix merge conflict
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Delisle <marc@infomarc.info>
  • Loading branch information
lem9 committed Dec 12, 2014
2 parents beb4f14 + eb69c01 commit 780ff02
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 7 additions & 5 deletions libraries/Util.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1820,11 +1820,13 @@ public static function linkOrButton(
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;
}
}
}
}
Expand Down

0 comments on commit 780ff02

Please sign in to comment.