From 024146d38e497dc68adf3a9afe4e74c99c986a52 Mon Sep 17 00:00:00 2001 From: Manish Verma Date: Thu, 20 Oct 2016 10:00:58 +0530 Subject: [PATCH] command Bug fix patch * removed-not-exisitng-commands * solved read/inread message color distinction not working --- app/Console/Kernel.php | 2 -- app/Http/Controllers/Agent/helpdesk/TicketController.php | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 96b85b48a..ad6953cb2 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -35,8 +35,6 @@ class Kernel extends ConsoleKernel $this->execute($schedule, 'fetching'); $this->execute($schedule, 'notification'); $this->execute($schedule, 'work'); - $this->execute($schedule, 'followup'); - $this->execute($schedule, 'message'); loging('cron', 'executed successfully', 'info'); } } diff --git a/app/Http/Controllers/Agent/helpdesk/TicketController.php b/app/Http/Controllers/Agent/helpdesk/TicketController.php index 54da3cb13..02f074c05 100644 --- a/app/Http/Controllers/Agent/helpdesk/TicketController.php +++ b/app/Http/Controllers/Agent/helpdesk/TicketController.php @@ -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 = ''; + $prio = ''; } else { $prio = ''; }