[Rt-commit] r9187 - rt/branches/3.999-DANGEROUS/lib/RT
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Mon Oct 1 09:45:28 EDT 2007
Author: sunnavy
Date: Mon Oct 1 09:45:28 2007
New Revision: 9187
Modified:
rt/branches/3.999-DANGEROUS/lib/RT/Record.pm
Log:
'$self->current_user' in parameters is replaced by
'current_user => $self->current_user'
Modified: rt/branches/3.999-DANGEROUS/lib/RT/Record.pm
==============================================================================
--- rt/branches/3.999-DANGEROUS/lib/RT/Record.pm (original)
+++ rt/branches/3.999-DANGEROUS/lib/RT/Record.pm Mon Oct 1 09:45:28 2007
@@ -539,7 +539,7 @@
sub _setLastUpdated {
my $self = shift;
use RT::Date;
- my $now = new RT::Date( $self->current_user );
+ my $now = new RT::Date( current_user => $self->current_user );
$now->set_to_now();
my ( $msg, $val ) = $self->__set(
More information about the Rt-commit
mailing list