Index: modules/blog/blog.module =================================================================== RCS file: /cvs/drupal/drupal/modules/blog/blog.module,v retrieving revision 1.297.2.2 diff -u -p -r1.297.2.2 blog.module --- modules/blog/blog.module 25 Apr 2008 20:39:54 -0000 1.297.2.2 +++ modules/blog/blog.module 19 May 2008 04:33:06 -0000 @@ -49,7 +49,7 @@ function blog_user($type, &$edit, &$user $user->content['summary']['blog'] = array( '#type' => 'user_profile_item', '#title' => t('Blog'), - '#value' => l(t('View recent blog entries'), "blog/$user->uid", array('title' => t("Read @username's latest blog entries.", array('@username' => $user->name)))), + '#value' => l(t('View recent blog entries'), "blog/$user->uid", array('attributes' => array('title' => t("Read @username's latest blog entries.", array('@username' => $user->name))))), '#attributes' => array('class' => 'blog'), ); } Index: modules/comment/comment.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.admin.inc,v retrieving revision 1.4.2.1 diff -u -p -r1.4.2.1 comment.admin.inc --- modules/comment/comment.admin.inc 23 Apr 2008 18:06:36 -0000 1.4.2.1 +++ modules/comment/comment.admin.inc 19 May 2008 04:33:06 -0000 @@ -64,7 +64,7 @@ function comment_admin_overview($type = while ($comment = db_fetch_object($result)) { $comments[$comment->cid] = ''; $comment->name = $comment->uid ? $comment->registered_name : $comment->name; - $form['subject'][$comment->cid] = array('#value' => l($comment->subject, 'node/'. $comment->nid, array('title' => truncate_utf8($comment->comment, 128), 'fragment' => 'comment-'. $comment->cid))); + $form['subject'][$comment->cid] = array('#value' => l($comment->subject, 'node/'. $comment->nid, array('attributes' => array('title' => truncate_utf8($comment->comment, 128)), 'fragment' => 'comment-'. $comment->cid))); $form['username'][$comment->cid] = array('#value' => theme('username', $comment)); $form['node_title'][$comment->cid] = array('#value' => l($comment->node_title, 'node/'. $comment->nid)); $form['timestamp'][$comment->cid] = array('#value' => format_date($comment->timestamp, 'small')); Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.947.2.7 diff -u -p -r1.947.2.7 node.module --- modules/node/node.module 19 Apr 2008 22:18:51 -0000 1.947.2.7 +++ modules/node/node.module 19 May 2008 04:33:07 -0000 @@ -135,7 +135,7 @@ function node_title_list($result, $title $items = array(); $num_rows = FALSE; while ($node = db_fetch_object($result)) { - $items[] = l($node->title, 'node/'. $node->nid, !empty($node->comment_count) ? array('title' => format_plural($node->comment_count, '1 comment', '@count comments')) : array()); + $items[] = l($node->title, 'node/'. $node->nid, !empty($node->comment_count) ? array('attributes' => array('title' => format_plural($node->comment_count, '1 comment', '@count comments'))) : array()); $num_rows = TRUE; } Index: modules/system/system.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v retrieving revision 1.63.2.2 diff -u -p -r1.63.2.2 system.admin.inc --- modules/system/system.admin.inc 25 Apr 2008 21:01:54 -0000 1.63.2.2 +++ modules/system/system.admin.inc 19 May 2008 04:33:08 -0000 @@ -1901,10 +1901,10 @@ function theme_admin_page($blocks) { $output = '
'; $output .= ''; Index: modules/user/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.module,v retrieving revision 1.892.2.3 diff -u -p -r1.892.2.3 user.module --- modules/user/user.module 17 May 2008 17:03:16 -0000 1.892.2.3 +++ modules/user/user.module 19 May 2008 04:33:09 -0000 @@ -664,9 +664,9 @@ function user_login_block() { ); $items = array(); if (variable_get('user_register', 1)) { - $items[] = l(t('Create new account'), 'user/register', array('title' => t('Create a new user account.'))); + $items[] = l(t('Create new account'), 'user/register', array('attributes' => array('title' => t('Create a new user account.')))); } - $items[] = l(t('Request new password'), 'user/password', array('title' => t('Request new password via e-mail.'))); + $items[] = l(t('Request new password'), 'user/password', array('attributes' => array('title' => t('Request new password via e-mail.')))); $form['links'] = array('#value' => theme('item_list', $items)); return $form; }