[Rt-commit] r5869 - in rt/branches/3.6-RELEASE: .

jesse at bestpractical.com jesse at bestpractical.com
Wed Sep 6 10:26:15 EDT 2006


Author: jesse
Date: Wed Sep  6 10:26:13 2006
New Revision: 5869

Modified:
   rt/branches/3.6-RELEASE/   (props changed)
   rt/branches/3.6-RELEASE/lib/RT/Ticket_Overlay.pm

Log:
 r27194 at pinglin:  jesse | 2006-09-06 10:26:01 -0400
 RT-Ticket:7852
 RT-Status: resolved
 RT-Update: correspond
 
 * Tobias Kremer pointed out a typo in Ticket_Overlay.pm that caused 
   an error when a user got a certain permission denied message
 


Modified: rt/branches/3.6-RELEASE/lib/RT/Ticket_Overlay.pm
==============================================================================
--- rt/branches/3.6-RELEASE/lib/RT/Ticket_Overlay.pm	(original)
+++ rt/branches/3.6-RELEASE/lib/RT/Ticket_Overlay.pm	Wed Sep  6 10:26:13 2006
@@ -2123,7 +2123,7 @@
     my $time = shift || 0;
 
     unless ( $self->CurrentUserHasRight('ModifyTicket') ) {
-        return ( 0, self->loc("Permission Denied") );
+        return ( 0, $self->loc("Permission Denied") );
     }
 
     #We create a date object to catch date weirdness


More information about the Rt-commit mailing list