Merge branch 'ent-11067-no-aparece-la-ip-al-hacer-hover-sobre-el-modulo' into 'develop'
Ent 11067 no aparece la ip al hacer hover sobre el modulo See merge request artica/pandorafms!5801
This commit is contained in:
commit
eb0be5c2c7
|
@ -882,6 +882,10 @@ if ($modules !== false) {
|
|||
$title
|
||||
);
|
||||
|
||||
if (strlen($module['ip_target']) !== 0) {
|
||||
$title .= '<br/>IP: '.$module['ip_target'];
|
||||
}
|
||||
|
||||
// This module is initialized ? (has real data).
|
||||
if ($status === STATUS_MODULE_NO_DATA) {
|
||||
$data[2] .= html_print_image(
|
||||
|
|
|
@ -1152,6 +1152,10 @@ if (check_login()) {
|
|||
$title
|
||||
);
|
||||
|
||||
if (strlen($module['ip_target']) !== 0) {
|
||||
$title .= '<br/>IP: '.$module['ip_target'];
|
||||
}
|
||||
|
||||
$last_status_change_text = __('Time elapsed since last status change: ');
|
||||
$last_status_change_text .= (empty($module['last_status_change']) === false) ? human_time_comparation($module['last_status_change']) : __('N/A');
|
||||
|
||||
|
|
Loading…
Reference in New Issue