[freeside-commits] branch master updated. d7006fb84965da14819c4ad3581fcb5e907a14d3

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


The branch, master has been updated
       via  d7006fb84965da14819c4ad3581fcb5e907a14d3 (commit)
      from  98c89189ba04ba86d74a3bb36f1d2481ec3f10ca (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 d7006fb84965da14819c4ad3581fcb5e907a14d3
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Mon Jan 6 20:41:31 2014 -0800

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

diff --git a/httemplate/pref/pref-process.html b/httemplate/pref/pref-process.html
index 7edf892..7848b72 100644
--- a/httemplate/pref/pref-process.html
+++ b/httemplate/pref/pref-process.html
@@ -84,7 +84,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