[Rt-commit] [svn] r1587 - rtir/branches/1.1-TESTING/lib/RT/Action

leira at pallas.eruditorum.org leira at pallas.eruditorum.org
Wed Sep 29 20:33:39 EDT 2004


Author: leira
Date: Wed Sep 29 20:33:38 2004
New Revision: 1587

Modified:
   rtir/branches/1.1-TESTING/lib/RT/Action/RTIR_ChangeParentOwnership.pm
Log:
fixed a syntax error: $incident, not $Incident


Modified: rtir/branches/1.1-TESTING/lib/RT/Action/RTIR_ChangeParentOwnership.pm
==============================================================================
--- rtir/branches/1.1-TESTING/lib/RT/Action/RTIR_ChangeParentOwnership.pm	(original)
+++ rtir/branches/1.1-TESTING/lib/RT/Action/RTIR_ChangeParentOwnership.pm	Wed Sep 29 20:33:38 2004
@@ -80,7 +80,7 @@
 
     my $parents = new RT::Tickets($self->TransactionObj->CurrentUser);
     $parents->FromSQL($query);
-    while (my $Incident = $parents->Next) {
+    while (my $incident = $parents->Next) {
 	if ( $incident->OwnerObj->id != $self->TransactionObj->NewValue) {
 	    my ($res, $msg); 
 	    my $user = new RT::CurrentUser($self->TransactionObj->CurrentUser);


More information about the Rt-commit mailing list