From 13e15570b28c9be4cf60356686a06bd6467e19d1 Mon Sep 17 00:00:00 2001 From: chansizzle <14916599+chansizzle@users.noreply.github.com> Date: Wed, 8 Jan 2020 20:48:03 -0700 Subject: [PATCH] Update app_config.php (#5041) --- app/sip_profiles/app_config.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/sip_profiles/app_config.php b/app/sip_profiles/app_config.php index c64628edc4..c7f523f4bd 100644 --- a/app/sip_profiles/app_config.php +++ b/app/sip_profiles/app_config.php @@ -95,12 +95,14 @@ $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "sip_profile_name"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the SIP Profile name."; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "sip_profile_hostname"; $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(255)"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "sip_profile_enabled"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; @@ -108,6 +110,7 @@ $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "sip_profile_description"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description."; $y++;