[Rt-commit] r2477 - in rt/branches/3.4-RELEASE: . lib/RT
jesse at bestpractical.com
jesse at bestpractical.com
Wed Mar 16 03:09:01 EST 2005
Author: jesse
Date: Wed Mar 16 03:09:00 2005
New Revision: 2477
Modified:
rt/branches/3.4-RELEASE/ (props changed)
rt/branches/3.4-RELEASE/lib/RT/Transaction_Overlay.pm
Log:
r8808 at hualien: jesse | 2005-03-16 03:07:57 -0500
RT-Ticket: 6537
RT-Status: resolved
Explicit transaction description for changed passwords
Modified: rt/branches/3.4-RELEASE/lib/RT/Transaction_Overlay.pm
==============================================================================
--- rt/branches/3.4-RELEASE/lib/RT/Transaction_Overlay.pm (original)
+++ rt/branches/3.4-RELEASE/lib/RT/Transaction_Overlay.pm Wed Mar 16 03:09:00 2005
@@ -742,7 +742,10 @@
},
Set => sub {
my $self = shift;
- if ( $self->Field eq 'Queue' ) {
+ if ( $self->Field eq 'Password' ) {
+ return $self->loc('Password changed');
+ }
+ elsif ( $self->Field eq 'Queue' ) {
my $q1 = new RT::Queue( $self->CurrentUser );
$q1->Load( $self->OldValue );
my $q2 = new RT::Queue( $self->CurrentUser );
More information about the Rt-commit
mailing list