From 82bb973ea7a9b651a5af3cfaf6ee875786d93850 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 17 Aug 2022 17:27:47 -0600 Subject: [PATCH] Update the event_guard constructor. --- app/event_guard/resources/classes/event_guard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/event_guard/resources/classes/event_guard.php b/app/event_guard/resources/classes/event_guard.php index 7d5cbe8824..23b84813a1 100644 --- a/app/event_guard/resources/classes/event_guard.php +++ b/app/event_guard/resources/classes/event_guard.php @@ -50,12 +50,12 @@ if (!class_exists('event_guard')) { */ public function __construct() { //assign the variables - $this->app_name = 'event_guard_logs'; + $this->app_name = 'event_guard'; $this->app_uuid = 'c5b86612-1514-40cb-8e2c-3f01a8f6f637'; $this->name = 'event_guard_log'; $this->table = 'event_guard_logs'; $this->toggle_field = ''; - $this->toggle_values = ['true','false']; + $this->toggle_values = ['block','pending']; $this->location = 'event_guard_logs.php'; }