2014-01-08 Ramon Novoa <rnovoa@artica.es>
* lib/PandoraFMS/DataServer.pm: Fixed a typo that prevented timestamps in datalists from being read. Fixes bug #2404. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9297 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
91ef095a21
commit
e537124ec8
|
@ -1,3 +1,8 @@
|
|||
2014-01-08 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* lib/PandoraFMS/DataServer.pm: Fixed a typo that prevented timestamps in
|
||||
datalists from being read. Fixes bug #2404.
|
||||
|
||||
2014-01-06 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* lib/PandoraFMS/Core.pm: Fixed that planned downtime is disabled
|
||||
|
|
|
@ -482,7 +482,7 @@ sub process_xml_data ($$$$$) {
|
|||
next unless defined ($data->{'value'});
|
||||
|
||||
$module_data->{'data'} = $data->{'value'};
|
||||
my $data_timestamp = get_tag_value ($module_data, 'timestamp', $timestamp);
|
||||
my $data_timestamp = get_tag_value ($data, 'timestamp', $timestamp);
|
||||
process_module_data ($pa_config, $module_data, $server_id, $agent_name, $module_name,
|
||||
$module_type, $interval, $data_timestamp, $dbh);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue