summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-02-03 18:40:29 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-02-03 18:40:29 +0000
commit2886944685811d7ec5cf16afbed2c047069214aa (patch)
tree6ebb3b28d3e917d8409a8a2a69cd4b302a754976
parente3cbacc31ec109d77eac91a15f85a1e41f26c18b (diff)
downloadbrdo-2886944685811d7ec5cf16afbed2c047069214aa.tar.gz
brdo-2886944685811d7ec5cf16afbed2c047069214aa.tar.bz2
#216632 by webernet, dww: more accessible update information screen
-rw-r--r--modules/update/update.report.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc
index a73246899..9d18b5706 100644
--- a/modules/update/update.report.inc
+++ b/modules/update/update.report.inc
@@ -45,7 +45,7 @@ function theme_update_report($data) {
switch ($project['status']) {
case UPDATE_CURRENT:
$class = 'ok';
- $icon = theme('image', 'misc/watchdog-ok.png');
+ $icon = theme('image', 'misc/watchdog-ok.png', t('ok'), t('ok'));
break;
case UPDATE_NOT_SECURE:
case UPDATE_REVOKED:
@@ -54,13 +54,13 @@ function theme_update_report($data) {
if ($notification_level == 'all'
|| $project['status'] != UPDATE_NOT_CURRENT) {
$class = 'error';
- $icon = theme('image', 'misc/watchdog-error.png');
+ $icon = theme('image', 'misc/watchdog-error.png', t('error'), t('error'));
break;
}
// Otherwise, deliberate no break and use the warning class/icon.
default:
$class = 'warning';
- $icon = theme('image', 'misc/watchdog-warning.png');
+ $icon = theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning'));
break;
}