Skip to content

Commit

Permalink
Issue #1449: Removed debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter authored and svenoe committed Feb 23, 2022
1 parent 2c2972a commit c446019
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Kernel/Modules/CustomerDynamicFieldDBSearch.pm
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ sub Run {
my $TicketID = $ParamObject->GetParam( Param => 'TicketID' ) || '';
my $Search = $ParamObject->GetParam( Param => 'Term' ) || '';
my $Identifier = $ParamObject->GetParam( Param => 'Identifier' ) || '';
my $ActivityDialogID = $ParamObject->GetParam( Param => 'ActivityDialogID') || '';

print STDERR "CustomerDynamicFieldDBSearch.pm, L.51: " . $ActivityDialogID . "\n";
my $ActivityDialogID = $ParamObject->GetParam( Param => 'ActivityDialogID' ) || '';

# Put all ticket related data in Param, Owner, Responsible are not selectable in
# customer interface, CustomerIserID and CustomerID are fixed.
Expand Down Expand Up @@ -186,9 +184,6 @@ sub Run {
$DynamicFieldName = substr( $DynamicFieldName, 0, index( $DynamicFieldName, '_' . $ActivityDialogID ) );
}

print STDERR "CustomerDynamicFieldDBSearch.pm, L.189: " . $DynamicFieldNameLong . "\n";
print STDERR "CustomerDynamicFieldDBSearch.pm, L.190: " . $DynamicFieldName . "\n";

# get the dynamic field value for the current ticket
my $DynamicFieldConfig = $Kernel::OM->Get('Kernel::System::DynamicField')->DynamicFieldGet(
Name => $DynamicFieldName,
Expand Down

0 comments on commit c446019

Please sign in to comment.