From abd5ad66c63450a5b634ba4c8b2e6406ffd0207c Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Thu, 18 Dec 2025 14:02:24 +0100 Subject: [PATCH] MT#64142 do not translate CF dropdown items names of CF destinationsets, sourcesets etc. are provided by the user and can therefore contain patterns that are then unintentionally interpreted by the perl Maketext Module, causing 500 errors as a consequence. translations are better disabled for the dropdown option items. Change-Id: I20fa5c5ad79f78f8d2f682ea54984e92997ec34c (cherry picked from commit 10df50468b56e09c0666843b5eb6411468c4aa64) (cherry picked from commit 6f266e5c34ab26b2a3d6815d7987304a7fca6b9c) --- lib/NGCP/Panel/Form/SubscriberCFAdvanced.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/NGCP/Panel/Form/SubscriberCFAdvanced.pm b/lib/NGCP/Panel/Form/SubscriberCFAdvanced.pm index a198986e20..10ab047b8f 100644 --- a/lib/NGCP/Panel/Form/SubscriberCFAdvanced.pm +++ b/lib/NGCP/Panel/Form/SubscriberCFAdvanced.pm @@ -25,24 +25,28 @@ has_field 'active_callforward.time_set' => ( type => '+NGCP::Panel::Field::SubscriberTimeSet', label => 'during Time Set', wrapper_class => [qw/hfh-rep-field/], + localize => 0, ); has_field 'active_callforward.source_set' => ( type => '+NGCP::Panel::Field::SubscriberSourceSet', label => 'from Source Set', wrapper_class => [qw/hfh-rep-field/], + localize => 0, ); has_field 'active_callforward.bnumber_set' => ( type => '+NGCP::Panel::Field::SubscriberBNumberSet', label => 'to B-Number Set', wrapper_class => [qw/hfh-rep-field/], + localize => 0, ); has_field 'active_callforward.destination_set' => ( type => '+NGCP::Panel::Field::SubscriberDestinationSet', label => 'Destination Set', wrapper_class => [qw/hfh-rep-field/], + localize => 0, ); has_field 'active_callforward.rm' => (