Closed btassite closed 8 years ago
I guess this is cosmetic:
defined(@array) is deprecated at nagios_reader_to_centreon_clapi.pl line 203. (Maybe you should just omit the defined()?)
Fixed it by changing:
$ diff ../../../nagios_reader_to_centreon_clapi.pl nagios_reader_to_centreon_clapi.pl 203c203 < if ( defined ( $contact->contactgroups ) && defined ( @{$contact->contactgroups} ) ) { --- > if ( defined ( $contact->contactgroups ) && @{$contact->contactgroups} ) {
I guess this is cosmetic:
defined(@array) is deprecated at nagios_reader_to_centreon_clapi.pl line 203. (Maybe you should just omit the defined()?)
Fixed it by changing: