Skip to content

Commit

Permalink
Fixed AdminProcessMangement: Text in MessageBox Notice should link to…
Browse files Browse the repository at this point in the history
… sync processes.
  • Loading branch information
NiklasSchmitt committed Feb 12, 2024
1 parent c0dd665 commit 08114a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 7.0.16 2024-??-??
- 2024-02-12 Fixed AdminProcessMangement: Text in MessageBox Notice should link to sync processes.
- 2024-02-09 Added ACL checks to ticket process toolbar entry.
- 2024-02-08 Pressing 'Ctrl+Enter' in a textarea or 'Enter' in an input field now submits the form instead of saving a draft.
- 2024-02-08 Sector Nord AG: Pressing 'Enter' inside of `<input>` triggers wrong event. Thanks to Ziggy Trotter (@ZTrotter), Sector Nord AG. [PR#498](https://github.com/znuny/Znuny/pull/498)
Expand Down
13 changes: 6 additions & 7 deletions Kernel/Modules/AdminProcessManagement.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ sub new {
sub Run {
my ( $Self, %Param ) = @_;

my $ParamObject = $Kernel::OM->Get('Kernel::System::Web::Request');
my $ParamObject = $Kernel::OM->Get('Kernel::System::Web::Request');
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
my $ProcessObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::DB::Process');
my $StateObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::DB::Process::State');
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');

$Self->{Subaction} = $ParamObject->GetParam( Param => 'Subaction' ) || '';

Expand Down Expand Up @@ -59,16 +63,11 @@ sub Run {
$Param{NotifyData} = [
{
Info => $SynchronizeMessage,
Link => $LayoutObject->{Baselink} . 'Action=AdminProcessManagement;Subaction=ProcessSync',
},
];
}

# get needed objects
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
my $ProcessObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::DB::Process');
my $StateObject = $Kernel::OM->Get('Kernel::System::ProcessManagement::DB::Process::State');
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');

# ------------------------------------------------------------ #
# ProcessImport
# ------------------------------------------------------------ #
Expand Down

0 comments on commit 08114a4

Please sign in to comment.