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

Hide poster's name on canned responses

parent e905a119
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ if($ticket->getThreadCount() && ($thread=$ticket->getClientThread())) {
//Making sure internal notes are not displayed due to backend MISTAKES!
if(!$threadType[$entry['thread_type']]) continue;
$poster = $entry['poster'];
if($entry['thread_type']=='R' && $cfg->hideStaffName())
if($entry['thread_type']=='R' && ($cfg->hideStaffName() || !$entry['staff_id']))
$poster = ' ';
?>
<table class="<?php echo $threadType[$entry['thread_type']]; ?>" cellspacing="0" cellpadding="1" width="800" border="0">
......
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