Skip to content
Snippets Groups Projects
Commit 64843689 authored by its4you's avatar its4you
Browse files

List view search by groups does not work properly

parent 414dc7ac
No related branches found
No related tags found
1 merge request!599Listviewsearch by groups does not work properly
......@@ -506,13 +506,20 @@ class Users_Record_Model extends Vtiger_Record_Model {
* @return <Array>
*/
public function getAccessibleGroups($private="",$module = false) {
global $default_charset;
//TODO:Remove dependence on $_REQUEST for the module name in the below API
$accessibleGroups = Vtiger_Cache::get('vtiger-'.$private, 'accessiblegroups');
if(!$accessibleGroups){
$accessibleGroups = get_group_array(false, "ACTIVE", "", $private,$module);
Vtiger_Cache::set('vtiger-'.$private, 'accessiblegroups',$accessibleGroups);
}
return $accessibleGroups;
if (!empty($accessibleGroups)) {
foreach ($accessibleGroups as $groupId => $groupName) {
$accessibleGroups[$groupId] = html_entity_decode($groupName, ENT_QUOTES, $default_charset);
}
}
return $accessibleGroups;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment