mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
fix #2552 function tags limit
This commit is contained in:
parent
4f45805bc7
commit
7e47a51249
@ -484,7 +484,7 @@ class e_form
|
||||
|
||||
$defaults['selectize'] = array(
|
||||
'create' => true,
|
||||
'maxItems' => 7,
|
||||
'maxItems' => vartrue($options['maxItems'], 7),
|
||||
'mode' => 'multi',
|
||||
'plugins' => array('remove_button'),
|
||||
);
|
||||
@ -4523,7 +4523,7 @@ class e_form
|
||||
{
|
||||
$options['selectize'] = array(
|
||||
'create' => true,
|
||||
'maxItems' => 7,
|
||||
'maxItems' => vartrue($parms['maxItems'], 7),
|
||||
'mode' => 'multi',
|
||||
'e_editable' => $field . '_' . $id,
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user