diff --git a/ChangeLog b/ChangeLog index 8a465651dc..9fad86f71d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -41,6 +41,7 @@ phpMyAdmin - ChangeLog - issue #12298 Fixed export of view definitions - issue #12242 Edit routine detail dialog does not fill "Return length" field in mysql functions - issue #12575 New index Confirm adds whitespace around the field name +- issue #12382 Bug in zoom search 4.6.4 (2016-08-16) - issue [security] Weaknesses with cookie encryption, see PMASA-2016-29 diff --git a/libraries/controllers/table/TableSearchController.php b/libraries/controllers/table/TableSearchController.php index ce10917aa8..c2c7462e41 100644 --- a/libraries/controllers/table/TableSearchController.php +++ b/libraries/controllers/table/TableSearchController.php @@ -461,7 +461,7 @@ class TableSearchController extends TableController } $key = array_search($field, $this->_columnNames); $search_index = 0; - if (PMA_isValid($_REQUEST['it'], 'integer')) { + if (PMA_isValid(intval($_REQUEST['it']), 'numeric')) { $search_index = $_REQUEST['it']; } $properties = $this->getColumnProperties($search_index, $key);