Skip to content

Commit

Permalink
Issue #1210: Enhance POD, tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Sep 28, 2021
1 parent 49b99a5 commit 532238f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions Kernel/System/MigrateFromOTRS/OTOBOCopyFilesFromOTRS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,16 @@ our @ObjectDependencies = (
Kernel::System::MigrateFromOTRS::OTOBOCopyFilesFromOTRS - Copy and migrate OTRS files to OTOBO server
=head1 SYNOPSIS
# to be called from L<Kernel::Modules::MigrateFromOTRS>.
=head1 DESCRIPTION
License headers of the copied files are adapted.
The file F<Kernel/Config.pm> is also adapted for use with OTOBO.
=head1 PUBLIC INTERFACE
=head2 CheckPreviousRequirement()
Expand Down Expand Up @@ -114,12 +120,12 @@ sub Run {
Message => "Need OTRSData->$Key!"
);

my %Result;
$Result{Message} = $Self->{LanguageObject}->Translate($Message);
$Result{Comment} = $Self->{LanguageObject}->Translate( 'Need OTRSData->%s!', $Key );
$Result{Successful} = 0;
return {
Message => $Self->{LanguageObject}->Translate($Message),
Comment => $Self->{LanguageObject}->Translate( 'Need OTRSData->%s!', $Key ),
Successful => 0,
};

return \%Result;
}
}

Expand Down

0 comments on commit 532238f

Please sign in to comment.