TT#30650 fix DbString $c declaration

* $c is declared as a passed argument in DbString functions

Change-Id: I34ee1cf2bbbbd95f1145c787fddd7af556f648d6
changes/57/18457/2
Kirill Solomko 7 years ago
parent ab70e4e355
commit db5c147da1

@ -4,7 +4,7 @@ use warnings;
use strict;
sub localize {
my $c;
my $c = shift;
$c->loc('Lock Level');
$c->loc('See "lock_voip_account_subscriber" for a list of possible values. A lock value of "none" will not be returned to the caller. Read-only setting.');
@ -196,7 +196,7 @@ sub localize {
}
sub form_strings {
my $c;
my $c = shift;
#NGCP::Panel::Form::BillingFee
#NGCP::Panel::Form::BillingFeeUpload

@ -24,7 +24,7 @@ use warnings;
use strict;
sub localize {
my $c;
my $c = shift;
HEADER_END

Loading…
Cancel
Save