summaryrefslogtreecommitdiff
path: root/rt/etc/upgrade/3.8-ical-extension.in
diff options
context:
space:
mode:
Diffstat (limited to 'rt/etc/upgrade/3.8-ical-extension.in')
-rw-r--r--rt/etc/upgrade/3.8-ical-extension.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/etc/upgrade/3.8-ical-extension.in b/rt/etc/upgrade/3.8-ical-extension.in
index 45b14a6eb..af95a96d9 100644
--- a/rt/etc/upgrade/3.8-ical-extension.in
+++ b/rt/etc/upgrade/3.8-ical-extension.in
@@ -3,7 +3,7 @@
#
# COPYRIGHT:
#
-# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
+# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC
# <sales@bestpractical.com>
#
# (Except where explicitly superseded by other copyright notices)
@@ -58,14 +58,14 @@ RT::LoadConfig();
RT::Init();
use RT::Attributes;
-my $attrs = RT::Attributes->new( $RT::SystemUser );
+my $attrs = RT::Attributes->new( RT->SystemUser );
$attrs->Limit(FIELD => 'ObjectType', OPERATOR=> '=', VALUE => 'RT::User');
$attrs->Limit(FIELD => 'Name', OPERATOR=> '=', VALUE => 'ical-auth-token');
while ( my $attr = $attrs->Next ) {
my $uid = $attr->ObjectId;
print "Processing auth token of user #". $uid ."...\n";
- my $user = RT::User->new( $RT::SystemUser );
+ my $user = RT::User->new( RT->SystemUser );
$user->Load( $uid );
unless ( $user->id ) {
print STDERR "\tERROR. Couldn't load user record\n";