[otrs-cvs] CVS: ITSMCMDB/Kernel/System ITSMCMDB.pm,1.24,1.25

cvs-log at otrs.org cvs-log at otrs.org
Thu Nov 2 14:36:12 CET 2006


Update of /home/cvs/ITSMCMDB/Kernel/System
In directory lancelot:/tmp/cvs-serv15070/Kernel/System

Modified Files:
	ITSMCMDB.pm 
Log Message:
update

Index: ITSMCMDB.pm
===================================================================
RCS file: /home/cvs/ITSMCMDB/Kernel/System/ITSMCMDB.pm,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** ITSMCMDB.pm	2 Nov 2006 12:19:13 -0000	1.24
--- ITSMCMDB.pm	2 Nov 2006 13:36:09 -0000	1.25
***************
*** 392,396 ****
  
      foreach my $Attribute (@{$ConfigArray}) {
!         if ($Attribute->{$Param{Option}} eq $Param{OptionValue}) {
              push (@ArrayReturn, $Attribute->{Key});
          }
--- 392,396 ----
  
      foreach my $Attribute (@{$ConfigArray}) {
!         if ($Attribute->{$Param{Option}} && $Attribute->{$Param{Option}} eq $Param{OptionValue}) {
              push (@ArrayReturn, $Attribute->{Key});
          }
***************
*** 398,402 ****
          if ($Attribute->{Sub}) {
              foreach my $AttributeSub1 (@{$Attribute->{Sub}}) {
!                 if ($AttributeSub1->{$Param{Option}} eq $Param{OptionValue}) {
                      push (@ArrayReturn, $Attribute->{Key} . '::' . $AttributeSub1->{Key});
                  }
--- 398,402 ----
          if ($Attribute->{Sub}) {
              foreach my $AttributeSub1 (@{$Attribute->{Sub}}) {
!                 if ($AttributeSub1->{$Param{Option}} && $AttributeSub1->{$Param{Option}} eq $Param{OptionValue}) {
                      push (@ArrayReturn, $Attribute->{Key} . '::' . $AttributeSub1->{Key});
                  }
***************
*** 404,408 ****
                  if ($AttributeSub1->{Sub}) {
                      foreach my $AttributeSub2 (@{$AttributeSub1->{Sub}}) {
!                         if ($AttributeSub2->{$Param{Option}} eq $Param{OptionValue}) {
                              push (@ArrayReturn, $Attribute->{Key} . '::' . $AttributeSub1->{Key} . '::' . $AttributeSub2->{Key});
                          }
--- 404,408 ----
                  if ($AttributeSub1->{Sub}) {
                      foreach my $AttributeSub2 (@{$AttributeSub1->{Sub}}) {
!                         if ($AttributeSub2->{$Param{Option}} && $AttributeSub2->{$Param{Option}} eq $Param{OptionValue}) {
                              push (@ArrayReturn, $Attribute->{Key} . '::' . $AttributeSub1->{Key} . '::' . $AttributeSub2->{Key});
                          }



More information about the cvs-log mailing list