From: Ivan Kohler Date: Tue, 7 Jan 2014 04:41:33 +0000 (-0800) Subject: fix RT::SystemUser bareword (vs. newer perl?) X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=f05c62c69477ba73031b7251fdd094ee013dbdff fix RT::SystemUser bareword (vs. newer perl?) --- diff --git a/httemplate/pref/pref-process.html b/httemplate/pref/pref-process.html index 55f306a9e..89c32b1f1 100644 --- a/httemplate/pref/pref-process.html +++ b/httemplate/pref/pref-process.html @@ -82,7 +82,7 @@ if ( !$error and ($FS::TicketSystem::system || '') eq 'RT_Internal' ) { FS::TicketSystem->init; my $UserObj = FS::TicketSystem->session('')->{'CurrentUser'}->UserObj; # Bypass RT ModifySelf ACL - $UserObj->CurrentUser( RT::SystemUser ); + $UserObj->CurrentUser( $RT::SystemUser ); if ( $UserObj->Lang ne $locale ) { my ($val, $msg) = $UserObj->SetLang($locale); $error = $msg if !$val;