1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-13 17:09:46 +01:00

Merge pull request #2574 from Jimmi08/patch-14

Closes #2552 function tags limit
This commit is contained in:
Cameron 2017-04-15 09:06:15 -07:00 committed by GitHub
commit dd3debc4e2

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