[freeside-commits] branch FREESIDE_3_BRANCH updated. 3edb5935b6ecc1194c53d16002f018caab039f5d
Ivan
ivan at 420.am
Mon Jan 6 20:41:33 PST 2014
The branch, FREESIDE_3_BRANCH has been updated
via 3edb5935b6ecc1194c53d16002f018caab039f5d (commit)
from 98b36380fd09ade523de7046e0c67e3e9b35de03 (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 3edb5935b6ecc1194c53d16002f018caab039f5d
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Jan 6 20:41:32 2014 -0800
fix RT::SystemUser bareword (vs. newer perl?)
diff --git a/httemplate/pref/pref-process.html b/httemplate/pref/pref-process.html
index 70f6676..8a826a7 100644
--- a/httemplate/pref/pref-process.html
+++ b/httemplate/pref/pref-process.html
@@ -83,7 +83,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