[otrs-cvs] ITSMConfigItem/Kernel/Output/HTML ITSMConfigItemLayoutDate.pm, 1.7, 1.7.2.1 ITSMConfigItemLayoutDateTime.pm, 1.8, 1.8.2.1
CVS commits notifications of OTRS.org
cvs-log at otrs.org
Wed Apr 30 12:59:31 GMT 2008
Comments:
Update of /home/cvs/ITSMConfigItem/Kernel/Output/HTML
In directory lancelot:/tmp/cvs-serv31308/Kernel/Output/HTML
Modified Files:
Tag: rel-1_0
ITSMConfigItemLayoutDate.pm ITSMConfigItemLayoutDateTime.pm
Log Message:
Fixed bug# 2916 - Impossible to perform a search in DateTime Fields in the future.
Author: mh
Index: ITSMConfigItemLayoutDate.pm
===================================================================
RCS file: /home/cvs/ITSMConfigItem/Kernel/Output/HTML/ITSMConfigItemLayoutDate.pm,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -C2 -d -r1.7 -r1.7.2.1
*** ITSMConfigItemLayoutDate.pm 2 Jul 2007 15:27:07 -0000 1.7
--- ITSMConfigItemLayoutDate.pm 30 Apr 2008 12:59:26 -0000 1.7.2.1
***************
*** 1,5 ****
# --
# Kernel/Output/HTML/ITSMConfigItemLayoutDate.pm - layout backend module
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id$
--- 1,5 ----
# --
# Kernel/Output/HTML/ITSMConfigItemLayoutDate.pm - layout backend module
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id$
***************
*** 7,11 ****
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
--- 7,11 ----
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --
***************
*** 33,37 ****
=item new()
! create a object
$BackendObject = Kernel::Output::HTML::ITSMConfigItemLayoutDate->new(
--- 33,37 ----
=item new()
! create an object
$BackendObject = Kernel::Output::HTML::ITSMConfigItemLayoutDate->new(
***************
*** 172,177 ****
Prefix => $Param{Key} . '::',
Format => 'DateInputFormat',
! YearPeriodPast => 5,
! YearPeriodFuture => 5,
%Values,
);
--- 172,177 ----
Prefix => $Param{Key} . '::',
Format => 'DateInputFormat',
! YearPeriodPast => 10,
! YearPeriodFuture => 10,
%Values,
);
***************
*** 249,253 ****
Format => 'DateInputFormat',
YearPeriodPast => 10,
! YearPeriodFuture => 0,
%Values,
);
--- 249,253 ----
Format => 'DateInputFormat',
YearPeriodPast => 10,
! YearPeriodFuture => 10,
%Values,
);
***************
*** 266,270 ****
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (GPL). If you
! did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
=cut
--- 266,270 ----
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (GPL). If you
! did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
=cut
***************
*** 274,276 ****
$Revision$ $Date$
! =cut
\ No newline at end of file
--- 274,276 ----
$Revision$ $Date$
! =cut
Author: mh
Index: ITSMConfigItemLayoutDateTime.pm
===================================================================
RCS file: /home/cvs/ITSMConfigItem/Kernel/Output/HTML/ITSMConfigItemLayoutDateTime.pm,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -C2 -d -r1.8 -r1.8.2.1
*** ITSMConfigItemLayoutDateTime.pm 2 Jul 2007 15:27:07 -0000 1.8
--- ITSMConfigItemLayoutDateTime.pm 30 Apr 2008 12:59:26 -0000 1.8.2.1
***************
*** 1,5 ****
# --
# Kernel/Output/HTML/ITSMConfigItemLayoutDateTime.pm - layout backend module
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id$
--- 1,5 ----
# --
# Kernel/Output/HTML/ITSMConfigItemLayoutDateTime.pm - layout backend module
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id$
***************
*** 7,11 ****
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
--- 7,11 ----
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --
***************
*** 33,37 ****
=item new()
! create a object
$BackendObject = Kernel::Output::HTML::ITSMConfigItemLayoutDateTime->new(
--- 33,37 ----
=item new()
! create an object
$BackendObject = Kernel::Output::HTML::ITSMConfigItemLayoutDateTime->new(
***************
*** 177,182 ****
Prefix => $Param{Key} . '::',
Format => 'DateInputFormatLong',
! YearPeriodPast => 5,
! YearPeriodFuture => 5,
%Values,
);
--- 177,182 ----
Prefix => $Param{Key} . '::',
Format => 'DateInputFormatLong',
! YearPeriodPast => 10,
! YearPeriodFuture => 10,
%Values,
);
***************
*** 258,262 ****
Format => 'DateInputFormatLong',
YearPeriodPast => 10,
! YearPeriodFuture => 0,
%Values,
);
--- 258,262 ----
Format => 'DateInputFormatLong',
YearPeriodPast => 10,
! YearPeriodFuture => 10,
%Values,
);
***************
*** 275,279 ****
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (GPL). If you
! did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
=cut
--- 275,279 ----
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (GPL). If you
! did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
=cut
***************
*** 283,285 ****
$Revision$ $Date$
! =cut
\ No newline at end of file
--- 283,285 ----
$Revision$ $Date$
! =cut
More information about the cvs-log
mailing list