[otrs-cvs] CVS: otrs/Kernel/Modules AdminGenericAgent.pm,1.26,1.27
cvs-log at otrs.org
cvs-log at otrs.org
Thu Jun 22 16:24:34 CEST 2006
Update of /home/cvs/otrs/Kernel/Modules
In directory lancelot:/tmp/cvs-serv8942/Kernel/Modules
Modified Files:
AdminGenericAgent.pm
Log Message:
fixed 0 count bug
Index: AdminGenericAgent.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/Modules/AdminGenericAgent.pm,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** AdminGenericAgent.pm 22 Jun 2006 12:09:43 -0000 1.26
--- AdminGenericAgent.pm 22 Jun 2006 13:24:32 -0000 1.27
***************
*** 241,246 ****
$Param{DeleteMessage} = 'You use the DELETE option! Take care, all deleted Tickets are lost!!!';
}
! $Param{AffectedIDs} = $#ViewableIDs + 1;
! #$Param{Message} = '' . at ViewableIDs.' Tickets affected! Do you really want to use this job?';
--- 241,250 ----
$Param{DeleteMessage} = 'You use the DELETE option! Take care, all deleted Tickets are lost!!!';
}
! if (@ViewableIDs) {
! $Param{AffectedIDs} = $#ViewableIDs + 1;
! }
! else {
! $Param{AffectedIDs} = 0;
! }
More information about the cvs-log
mailing list