diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-06-07 00:56:06 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-06-07 00:56:06 -0700 |
commit | 43a06151e47d2c59b833cbd8c26d97865ee850b6 (patch) | |
tree | 42c51d94e7fa265461b508d061562be204ccc2c1 /rt/etc/upgrade/3.8-ical-extension.in | |
parent | 6587f6ba7d047ddc1686c080090afe7d53365bd4 (diff) |
starting to work...
Diffstat (limited to 'rt/etc/upgrade/3.8-ical-extension.in')
-rw-r--r-- | rt/etc/upgrade/3.8-ical-extension.in | 6 |
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"; |