Skip to content
Snippets Groups Projects
Commit de5b4b47 authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge pull request #204 from greezybacon/issue/201


pdf: Fix incorrect conversion of closed-by name

Reviewed-By: default avatarPeter Rotich <peter@osticket.com>
parents 7b816ac3 7c4745e5
No related branches found
No related tags found
No related merge requests found
......@@ -202,7 +202,7 @@ class Ticket2PDF extends mPDF
$closedby = 'unknown';
if(($staff = $ticket->getStaff()))
$closedby = $staff->getName();
$closedby = (string) $staff->getName();
$this->WriteCell($l, 7, 'Closed By', 1, 0, 'L', true);
$this->SetFont('');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment