Skip to content

Commit

Permalink
Extended tag_filter field to 1000 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
hschottm committed Jan 3, 2016
1 parent 4956da0 commit 0521ef2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dca/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ public function getTagScopeTemplates(DataContainer $dc)
(
'label' => &$GLOBALS['TL_LANG']['tl_module']['tag_filter'],
'inputType' => 'text',
'eval' => array('maxlength'=>255, 'tl_class' => 'w50'),
'sql' => "varchar(255) NOT NULL default ''"
'eval' => array('maxlength'=>1000, 'tl_class' => 'w50'),
'sql' => "varchar(1000) NOT NULL default ''"
);

$GLOBALS['TL_DCA']['tl_module']['fields']['tag_tagfield'] = array
Expand Down

0 comments on commit 0521ef2

Please sign in to comment.