[freeside-commits] branch FREESIDE_2_3_BRANCH updated. f05c62c69477ba73031b7251fdd094ee013dbdff

Ivan ivan at 420.am
Mon Jan 6 20:41:34 PST 2014


The branch, FREESIDE_2_3_BRANCH has been updated
       via  f05c62c69477ba73031b7251fdd094ee013dbdff (commit)
      from  f6cd8c64f3237b6b98351385adedc5b5c727258b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f05c62c69477ba73031b7251fdd094ee013dbdff
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Mon Jan 6 20:41:33 2014 -0800

    fix RT::SystemUser bareword (vs. newer perl?)

diff --git a/httemplate/pref/pref-process.html b/httemplate/pref/pref-process.html
index 55f306a..89c32b1 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;

-----------------------------------------------------------------------

Summary of changes:
 httemplate/pref/pref-process.html |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)




More information about the freeside-commits mailing list