changed label
This commit is contained in:
parent
e60aaf1a77
commit
7e450ebdfa
|
@ -353,7 +353,7 @@ class user extends baseType {
|
||||||
if ($shadowModule != null) {
|
if ($shadowModule != null) {
|
||||||
$shadowAttrs = $shadowModule->getAttributes();
|
$shadowAttrs = $shadowModule->getAttributes();
|
||||||
if (shadowAccount::isAccountExpired($shadowAttrs)) {
|
if (shadowAccount::isAccountExpired($shadowAttrs)) {
|
||||||
$expiredLabels[] = _('Shadow');
|
$expiredLabels[] = _('Shadow') . ': ' . _('Account expiration');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!empty($expiredLabels)) {
|
if (!empty($expiredLabels)) {
|
||||||
|
@ -1014,7 +1014,7 @@ class lamUserList extends lamList {
|
||||||
$tipContent = '<table border=0>';
|
$tipContent = '<table border=0>';
|
||||||
// Shadow expired
|
// Shadow expired
|
||||||
if ($shadowExpired) {
|
if ($shadowExpired) {
|
||||||
$tipContent .= '<tr><td>' . _('Shadow') . ' </td><td><img height=16 width=16 src="../../graphics/expired.png"></td></tr>';
|
$tipContent .= '<tr><td>' . _('Shadow') . ': ' . _('Account expiration') . ' </td><td><img height=16 width=16 src="../../graphics/expired.png"></td></tr>';
|
||||||
}
|
}
|
||||||
// Unix
|
// Unix
|
||||||
if ($unixAvailable) {
|
if ($unixAvailable) {
|
||||||
|
|
Loading…
Reference in New Issue