mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 15:18:58 +01:00
Fix country filters - custom filters with type select now modified to nextmatch-filterheader, not regular select
This commit is contained in:
parent
17634bd72a
commit
bcbc42135d
@ -1087,6 +1087,11 @@ class etemplate_widget_nextmatch_customfilter extends etemplate_widget_transform
|
||||
self::$transformation['type'] = $this->attrs['type'] = 'nextmatch-entryheader';
|
||||
break;
|
||||
default:
|
||||
list($type, $subtype) = explode('-',$this->attrs['type'],2);
|
||||
if($type == 'select')
|
||||
{
|
||||
$this->attrs['type'] = 'nextmatch-filterheader';
|
||||
}
|
||||
self::$transformation['type'] = $this->attrs['type'];
|
||||
}
|
||||
$form_name = self::form_name($cname, $this->id, $expand);
|
||||
|
Loading…
Reference in New Issue
Block a user