summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-03-14 15:32:10 +0000
committersasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-03-14 15:32:10 +0000
commita6b26fc9ecae1da85677b16d024c3081052280c8 (patch)
treea316382a437b69640232e7d48e32959b5871ed6b
parentf8e11864b2c69b42f8ff4b73b1b458bc107ce96b (diff)
downloadzabbix-a6b26fc9ecae1da85677b16d024c3081052280c8.tar.gz
zabbix-a6b26fc9ecae1da85677b16d024c3081052280c8.tar.xz
zabbix-a6b26fc9ecae1da85677b16d024c3081052280c8.zip
- [DEV-108] GUI - Hardbeat message
git-svn-id: svn://svn.zabbix.com/trunk@5490 97f52cf1-0a1b-0410-bd0e-c28be96e8082
-rw-r--r--frontends/php/hosts.php4
-rw-r--r--frontends/php/include/locales/en_gb.inc.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/hosts.php b/frontends/php/hosts.php
index 5ff9b211..1cb07917 100644
--- a/frontends/php/hosts.php
+++ b/frontends/php/hosts.php
@@ -1175,7 +1175,7 @@ include_once "include/page_header.php";
SPACE,
make_sorting_link(S_NAME,'g.name')),
' # ',
- S_MEMBERS,S_ACCESSED));
+ S_MEMBERS,S_LASTSEEN_AGE));
$available_groups = get_accessible_groups_by_user($USER_DETAILS,PERM_READ_WRITE,null,null,get_current_nodeid());
@@ -1203,7 +1203,7 @@ include_once "include/page_header.php";
}
if($db_proxy['lastaccess'] != 0)
- $lastclock = date(S_DATE_FORMAT_YMDHMS, $db_proxy['lastaccess']);
+ $lastclock = zbx_date2age($db_proxy['lastaccess']);
else
$lastclock = new CCol('-', 'center');
diff --git a/frontends/php/include/locales/en_gb.inc.php b/frontends/php/include/locales/en_gb.inc.php
index d8e60225..f618aab1 100644
--- a/frontends/php/include/locales/en_gb.inc.php
+++ b/frontends/php/include/locales/en_gb.inc.php
@@ -690,7 +690,7 @@
'S_PROXY'=> 'Proxy',
'S_CREATE_PROXY'=> 'Create Proxy',
'S_PROXY_NAME'=> 'Proxy name',
- 'S_ACCESSED'=> 'Accessed',
+ 'S_LASTSEEN_AGE'=> 'Last seen (age)',
// Host profiles
'S_HOST_PROFILE'=> 'Host profile',
'S_DEVICE_TYPE'=> 'Device type',