From 4104cbd17c88e4c6cf240ee943adc6f6c288453c Mon Sep 17 00:00:00 2001 From: Jerry Padgett Date: Thu, 12 Sep 2019 17:28:17 -0400 Subject: [PATCH] Fax module dispatcher global's (#2663) - remove translation xl in GlobalSetting class --- library/globals.inc.php | 11 ----------- src/Services/Globals/GlobalSetting.php | 4 ++-- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/library/globals.inc.php b/library/globals.inc.php index 9e76332a87e..8f789b3ae0a 100644 --- a/library/globals.inc.php +++ b/library/globals.inc.php @@ -2028,17 +2028,6 @@ function gblTimeZones() // 'Notifications' => array( - 'oefax_enable' => array( - xl('Enable Fax SMS Module'), - array( - 0 => xl('Disabled'), - 1 => xl('RingCentral'), - 2 => xl('Twilio'), - ), - '0', - xl('Enable Fax SMS Support. Remember to install fax module.') - ), - 'patient_reminder_sender_name' => array( xl('Patient Reminder Sender Name'), 'text', // data type diff --git a/src/Services/Globals/GlobalSetting.php b/src/Services/Globals/GlobalSetting.php index 8364cb7f72e..cfac8a69902 100644 --- a/src/Services/Globals/GlobalSetting.php +++ b/src/Services/Globals/GlobalSetting.php @@ -36,10 +36,10 @@ public function __construct($label, $dataType, $default, $description, $isUserSe public function format() { return [ - xl($this->label), + $this->label, $this->dataType, $this->default, - xl($this->description) + $this->description ]; }