[otrs-cvs] CVS: otrs/Kernel/Modules AdminSysConfig.pm,1.45,1.46
cvs-log at otrs.org
cvs-log at otrs.org
Fri May 12 14:00:28 CEST 2006
Update of /home/cvs/otrs/Kernel/Modules
In directory lancelot:/tmp/cvs-serv491/Kernel/Modules
Modified Files:
AdminSysConfig.pm
Log Message:
fixed single digit problem
Index: AdminSysConfig.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/Modules/AdminSysConfig.pm,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -r1.45 -r1.46
*** AdminSysConfig.pm 27 Apr 2006 09:28:05 -0000 1.45
--- AdminSysConfig.pm 12 May 2006 11:00:26 -0000 1.46
***************
*** 330,334 ****
# Delete TimeVacationDaysOneTime Element?
if (!$Self->{ParamObject}->GetParam(Param => $ItemHash{Name}.'#DeleteTimeVacationDaysOneTimeElement'.($Index+1))) {
! $Content{$Year[$Index]}{$Month[$Index]}{$Day[$Index]} = $Values[$Index];
}
else {
--- 330,334 ----
# Delete TimeVacationDaysOneTime Element?
if (!$Self->{ParamObject}->GetParam(Param => $ItemHash{Name}.'#DeleteTimeVacationDaysOneTimeElement'.($Index+1))) {
! $Content{$Year[$Index]}{int($Month[$Index])}{int($Day[$Index])} = $Values[$Index];
}
else {
***************
*** 358,362 ****
# Delete TimeVacationDays Element?
if (!$Self->{ParamObject}->GetParam(Param => $ItemHash{Name}.'#DeleteTimeVacationDaysElement'.($Index+1))) {
! $Content{$Month[$Index]}{$Day[$Index]} = $Values[$Index];
}
else {
--- 358,362 ----
# Delete TimeVacationDays Element?
if (!$Self->{ParamObject}->GetParam(Param => $ItemHash{Name}.'#DeleteTimeVacationDaysElement'.($Index+1))) {
! $Content{int($Month[$Index])}{int($Day[$Index])} = $Values[$Index];
}
else {
More information about the cvs-log
mailing list