Skip to content

Commit

Permalink
fix(targetticket,targetchange): title is a string, not a rich text
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <[email protected]>
  • Loading branch information
btry committed Aug 11, 2021
1 parent fee9f4f commit 3b6171a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inc/targetchange.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public function rawSearchOptions() {
'table' => $this::getTable(),
'field' => 'target_name',
'name' => __('Change title', 'formcreator'),
'datatype' => 'text',
'datatype' => 'string',
'searchtype' => 'contains',
'massiveaction' => false
];
Expand Down
2 changes: 1 addition & 1 deletion inc/targetticket.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function rawSearchOptions() {
'table' => $this::getTable(),
'field' => 'target_name',
'name' => __('Ticket title', 'formcreator'),
'datatype' => 'text',
'datatype' => 'string',
'searchtype' => 'contains',
'massiveaction' => false
];
Expand Down

0 comments on commit 3b6171a

Please sign in to comment.