From 6158580869eb7ecac69f4c2f526dbb8b20cfabf1 Mon Sep 17 00:00:00 2001 From: Andrew Pogrebennyk Date: Wed, 11 Jun 2014 11:07:59 +0200 Subject: [PATCH] MT#7439 ngcp-panel: Fix typo in the Call Through label --- lib/NGCP/Panel/Form/DestinationSet.pm | 2 +- lib/NGCP/Panel/Form/SubscriberCFSimple.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/NGCP/Panel/Form/DestinationSet.pm b/lib/NGCP/Panel/Form/DestinationSet.pm index 217b385b6c..27b0684371 100644 --- a/lib/NGCP/Panel/Form/DestinationSet.pm +++ b/lib/NGCP/Panel/Form/DestinationSet.pm @@ -60,7 +60,7 @@ sub build_destinations { if($c->config->{features}->{faxserver}); push @options, { label => 'Calling Card', value => 'callingcard' } if($c->config->{features}->{callingcard}); - push @options, { label => 'Call Trough', value => 'callthrough' } + push @options, { label => 'Call Through', value => 'callthrough' } if($c->config->{features}->{callthrough}); push @options, { label => 'Auto Attendant', value => 'autoattendant' } if($c->config->{features}->{cloudpbx} && $c->stash->{pbx}); diff --git a/lib/NGCP/Panel/Form/SubscriberCFSimple.pm b/lib/NGCP/Panel/Form/SubscriberCFSimple.pm index 500c4052b2..30e711ab46 100644 --- a/lib/NGCP/Panel/Form/SubscriberCFSimple.pm +++ b/lib/NGCP/Panel/Form/SubscriberCFSimple.pm @@ -45,7 +45,7 @@ sub build_destinations { if($c->config->{features}->{faxserver}); push @options, { label => 'Calling Card', value => 'callingcard' } if($c->config->{features}->{callingcard}); - push @options, { label => 'Call Trough', value => 'callthrough' } + push @options, { label => 'Call Through', value => 'callthrough' } if($c->config->{features}->{callthrough}); push @options, { label => 'Auto Attendant', value => 'autoattendant' } if($c->config->{features}->{cloudpbx} && $c->stash->{pbx});