1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-18 05:09:05 +01:00

fix #2552 function tags limit

This commit is contained in:
Jimako 2017-04-15 17:31:25 +02:00 committed by GitHub
parent 4f45805bc7
commit 7e47a51249

View File

@ -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,
);