2009-09-24 Sancho Lerena <slerena@artica.es>

* pandora_console/operation/agentes/datos_agente.php: Data in dataview 
        must be complete data, not "rounded" data.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1971 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2009-09-24 16:40:14 +00:00
parent a7c7ce7d31
commit da98686372
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-09-24 Sancho Lerena <slerena@artica.es>
* pandora_console/operation/agentes/datos_agente.php: Data in dataview
must be complete data, not "rounded" data.
2009-09-21 Sancho Lerena <slerena@artica.es>
* include/functions_network_components.php,

View File

@ -87,7 +87,7 @@ foreach ($result as $row) {
}
$data[1] = print_timestamp ($row["utimestamp"], true);
if (is_numeric ($row["datos"])) {
$data[2] = format_for_graph ($row["datos"]);
$data[2] = $row["datos"];
} else {
$data[2] = safe_input ($row["datos"]);
}