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

Bug fix :(

parent 16021007
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ if(!$dept || !$dept->isPublic())
if($ticket->getThreadCount() && ($thread=$ticket->getClientThread())) {
$threadType=array('M' => 'message', 'R' => 'response');
foreach($thread as $entry) {
if($entry['body'], '-')
if($entry['body']=='-')
$entry['body'] = '(EMPTY)';
//Making sure internal notes are not displayed due to backend MISTAKES!
......
......@@ -332,7 +332,7 @@ if(!$cfg->showNotesInline()) { ?>
$types[] = 'N';
if(($thread=$ticket->getThreadEntries($types))) {
foreach($thread as $entry) {
if($entry['body'], '-')
if($entry['body']=='-')
$entry['body'] = '(EMPTY)';
?>
<table class="<?php echo $threadTypes[$entry['thread_type']]; ?>" cellspacing="0" cellpadding="1" width="940" 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