1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02: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

View File

@@ -484,7 +484,7 @@ class e_form
$defaults['selectize'] = array( $defaults['selectize'] = array(
'create' => true, 'create' => true,
'maxItems' => 7, 'maxItems' => vartrue($options['maxItems'], 7),
'mode' => 'multi', 'mode' => 'multi',
'plugins' => array('remove_button'), 'plugins' => array('remove_button'),
); );
@@ -4523,7 +4523,7 @@ class e_form
{ {
$options['selectize'] = array( $options['selectize'] = array(
'create' => true, 'create' => true,
'maxItems' => 7, 'maxItems' => vartrue($parms['maxItems'], 7),
'mode' => 'multi', 'mode' => 'multi',
'e_editable' => $field . '_' . $id, 'e_editable' => $field . '_' . $id,
); );