Skip to content
Snippets Groups Projects
Commit 7c4745e5 authored by Jared Hancock's avatar Jared Hancock
Browse files

pdf: Fix incorrect conversion of closed-by name

parent 2f62149d
No related branches found
No related tags found
No related merge requests found
...@@ -202,7 +202,7 @@ class Ticket2PDF extends mPDF ...@@ -202,7 +202,7 @@ class Ticket2PDF extends mPDF
$closedby = 'unknown'; $closedby = 'unknown';
if(($staff = $ticket->getStaff())) if(($staff = $ticket->getStaff()))
$closedby = $staff->getName(); $closedby = (string) $staff->getName();
$this->WriteCell($l, 7, 'Closed By', 1, 0, 'L', true); $this->WriteCell($l, 7, 'Closed By', 1, 0, 'L', true);
$this->SetFont(''); $this->SetFont('');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment