Skip to content

Commit

Permalink
Fax module dispatcher global's (openemr#2663)
Browse files Browse the repository at this point in the history
- remove translation xl in GlobalSetting class
  • Loading branch information
sjpadgett committed Sep 12, 2019
1 parent 984e4cc commit 4104cbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
11 changes: 0 additions & 11 deletions library/globals.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/Services/Globals/GlobalSetting.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
];
}

Expand Down

0 comments on commit 4104cbd

Please sign in to comment.