[Rt-commit] r2052 - in rt/branches/3.2-RELEASE: . lib/RT
jesse at bestpractical.com
jesse at bestpractical.com
Thu Jan 6 17:17:56 EST 2005
Author: jesse
Date: Thu Jan 6 17:17:56 2005
New Revision: 2052
Modified:
rt/branches/3.2-RELEASE/ (props changed)
rt/branches/3.2-RELEASE/lib/RT/Ticket_Overlay.pm
Log:
r2575 at hualien: jesse | 2005-01-06T22:15:39.847669Z
RT-Ticket: 6327
RT-Status: resolved
RT-Update: correspond
Users who had "DeleteTicket" but not "ModifyTicket" could not delete tickets.
This is introduced because "Ticket::SetStatus" checks the ACL but
forgets to tell "Ticket::_Set" NOT to check (which does check again, but
only against the 'ModifyTicket' right, and thus denies the change).
Thanks to Ruediger Riediger
Modified: rt/branches/3.2-RELEASE/lib/RT/Ticket_Overlay.pm
==============================================================================
--- rt/branches/3.2-RELEASE/lib/RT/Ticket_Overlay.pm (original)
+++ rt/branches/3.2-RELEASE/lib/RT/Ticket_Overlay.pm Thu Jan 6 17:17:56 2005
@@ -3221,6 +3221,7 @@
my ($val, $msg)= $self->_Set( Field => 'Status',
Value => $args{Status},
TimeTaken => 0,
+ CheckACL => 0,
TransactionType => 'Status' );
return($val,$msg);
More information about the Rt-commit
mailing list