From 2886944685811d7ec5cf16afbed2c047069214aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Sun, 3 Feb 2008 18:40:29 +0000 Subject: [PATCH] #216632 by webernet, dww: more accessible update information screen --- modules/update/update.report.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc index a732468993..9d18b57067 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; } -- GitLab