[otrs-cvs] ITSMIncidentProblemManagement/Kernel/System/Stats/Dynamic ITSMTicketSolutionTimeAverage.pm, 1.8, 1.9 ITSMTicketFirstLevelSolutionRate.pm, 1.8, 1.9
"CVS commits notifications of OTRS.org" <[email protected]>
| Newsgroups | gmane.comp.otrs.cvs |
|---|---|
| Message-ID | <[email protected]> |
Comments:
Update of /home/cvs/ITSMIncidentProblemManagement/Kernel/System/Stats/Dynamic
In directory lancelot:/tmp/cvs-serv4410/Kernel/System/Stats/Dynamic
Modified Files:
ITSMTicketSolutionTimeAverage.pm
ITSMTicketFirstLevelSolutionRate.pm
Log Message:
Fixed uninitialized value error.
Author: ub
Index: ITSMTicketSolutionTimeAverage.pm
===================================================================
RCS file: /home/cvs/ITSMIncidentProblemManagement/Kernel/System/Stats/Dynamic/ITSMTicketSolutionTimeAverage.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -2 -u -d -r1.8 -r1.9
--- ITSMTicketSolutionTimeAverage.pm 28 Feb 2012 18:05:58 -0000 1.8
+++ ITSMTicketSolutionTimeAverage.pm 31 Jan 2013 12:55:05 -0000 1.9
@@ -1,5 +1,5 @@
# --
# Kernel/System/Stats/Dynamic/ITSMTicketSolutionTimeAverage.pm - stats functions for the solution time average
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -396,5 +396,9 @@
# if it is the impact field
- if ( $DynamicFieldStatsParameter->{Element} eq 'DynamicField_TicketFreeText14' ) {
+ if (
+ IsHashRefWithData($DynamicFieldStatsParameter)
+ && $DynamicFieldStatsParameter->{Element} eq 'DynamicField_TicketFreeText14'
+ )
+ {
# get the list of impacts as a hash reference
Author: ub
Index: ITSMTicketFirstLevelSolutionRate.pm
===================================================================
RCS file: /home/cvs/ITSMIncidentProblemManagement/Kernel/System/Stats/Dynamic/ITSMTicketFirstLevelSolutionRate.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -2 -u -d -r1.8 -r1.9
--- ITSMTicketFirstLevelSolutionRate.pm 28 Feb 2012 18:05:58 -0000 1.8
+++ ITSMTicketFirstLevelSolutionRate.pm 31 Jan 2013 12:55:05 -0000 1.9
@@ -1,5 +1,5 @@
# --
# Kernel/System/Stats/Dynamic/ITSMTicketFirstLevelSolutionRate.pm - stats functions for the first level solution rate
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -396,5 +396,9 @@
# if it is the impact field
- if ( $DynamicFieldStatsParameter->{Element} eq 'DynamicField_TicketFreeText14' ) {
+ if (
+ IsHashRefWithData($DynamicFieldStatsParameter)
+ && $DynamicFieldStatsParameter->{Element} eq 'DynamicField_TicketFreeText14'
+ )
+ {
# get the list of impacts as a hash reference
---------------------------------------------------------------------
OTRS mailing list: cvs-log - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/cvs-log
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/cvs-log