From 08fd1996247c4064a0fde87c076206e63ee95851 Mon Sep 17 00:00:00 2001
From: Peter Rotich <peter@osticket.com>
Date: Fri, 26 Sep 2014 14:00:26 +0000
Subject: [PATCH] bug: Fix sprintf mishap

---
 include/staff/ticket-view.inc.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/staff/ticket-view.inc.php b/include/staff/ticket-view.inc.php
index b0dc9ee4a..5a0100bbc 100644
--- a/include/staff/ticket-view.inc.php
+++ b/include/staff/ticket-view.inc.php
@@ -30,7 +30,7 @@ elseif ($ticket->isAssigned()
         && (($staff && $staff->getId()!=$thisstaff->getId())
             || ($team && !$team->hasMember($thisstaff))
         ))
-    $warn.= sprintf('&nbsp;&nbsp;<span class="Icon assignedTicket">%</span>',
+    $warn.= sprintf('&nbsp;&nbsp;<span class="Icon assignedTicket">%s</span>',
             sprintf(__('Ticket is assigned to %s'),
                 implode('/', $ticket->getAssignees())
                 ));
-- 
GitLab