command Bug fix patch
* removed-not-exisitng-commands * solved read/inread message color distinction not working
This commit is contained in:
@@ -35,8 +35,6 @@ class Kernel extends ConsoleKernel
|
|||||||
$this->execute($schedule, 'fetching');
|
$this->execute($schedule, 'fetching');
|
||||||
$this->execute($schedule, 'notification');
|
$this->execute($schedule, 'notification');
|
||||||
$this->execute($schedule, 'work');
|
$this->execute($schedule, 'work');
|
||||||
$this->execute($schedule, 'followup');
|
|
||||||
$this->execute($schedule, 'message');
|
|
||||||
loging('cron', 'executed successfully', 'info');
|
loging('cron', 'executed successfully', 'info');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -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();
|
$priority = DB::table('ticket_priority')->select('priority_desc', 'priority_color')->where('priority_id', '=', $ticket->priority_id)->first();
|
||||||
if ($priority != null) {
|
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 {
|
} else {
|
||||||
$prio = '';
|
$prio = '';
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user