From 054a33cf3e2eb99e9f43c21bdb1961a244cdf46b Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 1 Aug 2022 23:35:31 -0600 Subject: [PATCH] Add the user_agent field. --- app/event_guard/app_config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/event_guard/app_config.php b/app/event_guard/app_config.php index 06f1e2cb81..dfeb9d95f9 100644 --- a/app/event_guard/app_config.php +++ b/app/event_guard/app_config.php @@ -70,6 +70,11 @@ $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the extension.'; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'user_agent'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the user_agent.'; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'log_status'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';