update for bug-fix-patch-4

This commit is contained in:
Manish Verma
2016-11-28 16:49:30 +05:30
parent 6f7ee1569c
commit 07319587ae

View File

@@ -170,7 +170,7 @@ $conversations = App\Model\helpdesk\Ticket\Ticket_Thread::where('ticket_id', '='
$ij = App\Model\helpdesk\Ticket\Ticket_Thread::where('ticket_id', '=', $tickets->id)->first(); $ij = App\Model\helpdesk\Ticket\Ticket_Thread::where('ticket_id', '=', $tickets->id)->first();
$user = App\User::where('id', '=', $tickets->user_id)->first(); $user = App\User::where('id', '=', $tickets->user_id)->first();
foreach ($conversations as $conversation) { foreach ($conversations as $conversation) {
$role = $conversation->user; $role = App\User::where('id', '=', $conversation->user_id)->first();
$body = $conversation->thread($conversation->body); $body = $conversation->thread($conversation->body);
?> ?>
<ol class="comment-list" > <ol class="comment-list" >