diff --git a/ChangeLog b/ChangeLog index f5eb9715a9..6d252f1e59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/libraries/Util.class.php b/libraries/Util.class.php index 05d9e6978a..5984c16523 100644 --- a/libraries/Util.class.php +++ b/libraries/Util.class.php @@ -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; + } } } }