Skip to content

Commit 753451f

Browse files
Merge pull request #5506 from christianbeeznest/fixes-updates28
Internal: Minor: fix display expiration date in reporting - BT#21660
2 parents 31d0378 + c104cb2 commit 753451f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/main/inc/lib/tracking.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2011,7 +2011,7 @@ public static function get_last_connection_date(
20112011
//If the last connection is > than 7 days, the text is red
20122012
//345600 = 7 days in seconds
20132013
if ($currentTimestamp - $timestamp > 604800) {
2014-
return '<span style="color: #F00;">'.api_format_date($last_login_date, DATE_FORMAT_SHORT).'</span>';
2014+
return '<em style="color: #F00;">'.api_format_date($last_login_date, DATE_FORMAT_SHORT).'</em>';
20152015
} else {
20162016
return api_format_date($last_login_date, DATE_FORMAT_SHORT);
20172017
}

0 commit comments

Comments
 (0)