Fixed minor visual error in GIS Map

This commit is contained in:
samucarc 2018-11-14 12:10:38 +01:00
parent d91f81d0ed
commit 43629d5c2a

View File

@ -321,7 +321,7 @@ switch ($opt) {
// Last contact // Last contact
$row = array(); $row = array();
$row[] = __('Last contact'); $row[] = __('Last contact');
if ($agent["ultimo_contacto"] == "01-01-1970 00:00:00") { if ($agent["ultimo_contacto"] == "1970-01-01 00:00:00") {
$row[] = __('Never'); $row[] = __('Never');
} }
else { else {
@ -332,7 +332,7 @@ switch ($opt) {
// Last remote contact // Last remote contact
$row = array(); $row = array();
$row[] = __('Remote'); $row[] = __('Remote');
if ($agent["ultimo_contacto_remoto"] == "01-01-1970 00:00:00") { if ($agent["ultimo_contacto_remoto"] == "1970-01-01 00:00:00") {
$row[] = __('Never'); $row[] = __('Never');
} }
else { else {