command Bug fix patch

* removed-not-exisitng-commands
* solved read/inread message color distinction not working
This commit is contained in:
Manish Verma
2016-10-20 10:00:58 +05:30
parent 3586827dd1
commit 024146d38e
2 changed files with 1 additions and 3 deletions

View File

@@ -2567,7 +2567,7 @@ class TicketController extends Controller
}
$priority = DB::table('ticket_priority')->select('priority_desc', 'priority_color')->where('priority_id', '=', $ticket->priority_id)->first();
if ($priority != null) {
$prio = '<button class="btn btn-xs" style="background-color: '.$priority->priority_color.'">'.ucfirst($priority->priority_desc).'</button>';
$prio = '<button class="btn btn-xs '.$rep.'" style="background-color: '.$priority->priority_color.'">'.ucfirst($priority->priority_desc).'</button>';
} else {
$prio = '';
}