diff options
Diffstat (limited to 'rt/etc/upgrade/3.8.2/content')
-rw-r--r-- | rt/etc/upgrade/3.8.2/content | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rt/etc/upgrade/3.8.2/content b/rt/etc/upgrade/3.8.2/content index d8f54e9ba..0eef401b8 100644 --- a/rt/etc/upgrade/3.8.2/content +++ b/rt/etc/upgrade/3.8.2/content @@ -7,14 +7,14 @@ ." you may eventually want to start using approvals." ); - my $approvals_q = RT::Queue->new( $RT::SystemUser ); + my $approvals_q = RT::Queue->new( RT->SystemUser ); $approvals_q->Load('___Approvals'); unless ( $approvals_q->id ) { $RT::Logger->error("You have no approvals queue."); return 1; } - my $templates = RT::Templates->new( $RT::SystemUser ); + my $templates = RT::Templates->new( RT->SystemUser ); $templates->LimitToQueue( $approvals_q->id ); while ( my $tmpl = $templates->Next ) { my ($status, $msg) = $tmpl->SetName( "[OLD] ". $tmpl->Name ); @@ -109,9 +109,9 @@ The ticket has been approved, you may now start to act on it. @Final = ( sub { $RT::Logger->debug("Going to adjust dashboards"); - my $sys = RT::System->new($RT::SystemUser); + my $sys = RT::System->new(RT->SystemUser); - my $attrs = RT::Attributes->new( $RT::SystemUser ); + my $attrs = RT::Attributes->new( RT->SystemUser ); $attrs->UnLimit; my @dashboards = $attrs->Named('Dashboard'); @@ -147,7 +147,7 @@ The ticket has been approved, you may now start to act on it. return 1; }, sub { - my $approvals_q = RT::Queue->new( $RT::SystemUser ); + my $approvals_q = RT::Queue->new( RT->SystemUser ); $approvals_q->Load('___Approvals'); unless ( $approvals_q->id ) { $RT::Logger->error("You have no approvals queue."); @@ -168,7 +168,7 @@ The ticket has been approved, you may now start to act on it. require Data::Dumper; - my $scrips = RT::Scrips->new( $RT::SystemUser ); + my $scrips = RT::Scrips->new( RT->SystemUser ); $scrips->LimitToQueue( $approvals_q->id ); while ( my $scrip = $scrips->Next ) { my %tmp = |