diff --git a/htdocs/ticket/card.php b/htdocs/ticket/card.php
index cc7f5a60dbb..9b24a8b68c6 100644
--- a/htdocs/ticket/card.php
+++ b/htdocs/ticket/card.php
@@ -994,7 +994,7 @@ if (empty($action) || $action == 'view' || $action == 'addlink' || $action == 'd
print '
';
print $langs->trans('TicketChangeType');
print ' | ';
- print $formticket->selectTypesTickets($object->type_code, 'update_value_type', '', 2);
+ $formticket->selectTypesTickets($object->type_code, 'update_value_type', '', 2);
print ' | ';
print '';
// Group
@@ -1002,7 +1002,7 @@ if (empty($action) || $action == 'view' || $action == 'addlink' || $action == 'd
print '';
print $langs->trans('TicketChangeCategory');
print ' | ';
- print $formticket->selectGroupTickets($object->category_code, 'update_value_category', '', 2);
+ $formticket->selectGroupTickets($object->category_code, 'update_value_category', '', 2);
print ' | ';
print '';
// Severity
@@ -1010,7 +1010,7 @@ if (empty($action) || $action == 'view' || $action == 'addlink' || $action == 'd
print '';
print $langs->trans('TicketChangeSeverity');
print ' | ';
- print $formticket->selectSeveritiesTickets($object->severity_code, 'update_value_severity', '', 2);
+ $formticket->selectSeveritiesTickets($object->severity_code, 'update_value_severity', '', 2);
print ' | ';
print '';
} else {