From d54e67002b84b09b5df4c5af5775054d5dedf3aa Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sat, 20 Nov 2010 09:40:34 +0000 Subject: #964072 by BarisW: Fixed TItle attribute on 'Update notes' link should not include HTML tags --- modules/update/update.manager.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/update') diff --git a/modules/update/update.manager.inc b/modules/update/update.manager.inc index c100e1658..efc2d281e 100644 --- a/modules/update/update.manager.inc +++ b/modules/update/update.manager.inc @@ -112,7 +112,7 @@ function update_manager_update_form($form, $form_state = array(), $context) { } $recommended_release = $project['releases'][$project['recommended']]; - $recommended_version = $recommended_release['version'] . ' ' . l(t('(Release notes)'), $recommended_release['release_link'], array('attributes' => array('title' => t('Release notes for @project_name', array('@project_name' => $project_name))))); + $recommended_version = $recommended_release['version'] . ' ' . l(t('(Release notes)'), $recommended_release['release_link'], array('attributes' => array('title' => t('Release notes for @project_title', array('@project_title' => $project['title']))))); if ($recommended_release['version_major'] != $project['existing_major']) { $recommended_version .= '
' . t('This update is a major version update which means that it may not be backwards compatible with your currently running version. It is recommended that you read the release notes and proceed at your own risk.') . '
'; } -- cgit v1.2.3