From 312a741b80cd78d120ff6145e70ed7a782c8b579 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 25 Nov 2021 21:42:42 +0100 Subject: [PATCH] Fix closing div --- htdocs/ticket/card.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/htdocs/ticket/card.php b/htdocs/ticket/card.php index 76d16aa53b6..16ef0f7bd77 100644 --- a/htdocs/ticket/card.php +++ b/htdocs/ticket/card.php @@ -854,6 +854,7 @@ if ($action == 'create' || $action == 'presend') { //print "userAccess=".$userAccess." userWrite=".$userWrite." userDelete=".$userDelete; $head = project_prepare_head($projectstat); + print dol_get_fiche_head($head, 'ticket', $langs->trans("Project"), 0, ($projectstat->public ? 'projectpub' : 'project')); /* @@ -902,7 +903,7 @@ if ($action == 'create' || $action == 'presend') { print ""; - print ''; + print dol_get_fiche_end(); } else { print "ErrorRecordNotFound"; } @@ -1178,6 +1179,8 @@ if ($action == 'create' || $action == 'presend') { } print ''; + + print ''; }