From 2762ed02ffd3166f4d5918c0b72e13935448e0ba Mon Sep 17 00:00:00 2001 From: yashodha Date: Tue, 10 May 2016 16:48:05 +0530 Subject: [PATCH] CRM-18521: Search results table, 'Select all' checkbox gives 'mark_x_201 is not of the type Integer' ---------------------------------------- * CRM-18521: Search results table, "Select all" checkbox gives "mark_x_201 is not of the type Integer" https://issues.civicrm.org/jira/browse/CRM-18521 --- CRM/Contact/Page/AJAX.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contact/Page/AJAX.php b/CRM/Contact/Page/AJAX.php index fe04a13c7a..9d1e8c3b23 100644 --- a/CRM/Contact/Page/AJAX.php +++ b/CRM/Contact/Page/AJAX.php @@ -761,7 +761,7 @@ LIMIT {$offset}, {$rowCount} foreach ($elements as $key => $element) { $elements[$key] = self::_convertToId($element); } - CRM_Utils_Type::escapeAll($elements, 'Integer'); + CRM_Utils_Type::escapeAll($elements, 'Integer'); CRM_Core_BAO_PrevNextCache::markSelection($cacheKey, $actionToPerform, $elements); } else { -- 2.25.1