Skip to content
Snippets Groups Projects
Commit 596ba622 authored by Jeff Burnz's avatar Jeff Burnz
Browse files

add title attribute to edit links

parent 61970008
No related branches found
Tags 5.x-1.0
No related merge requests found
......@@ -25,6 +25,7 @@ function phptemplate_preprocess_block_editing(&$vars, $hook) {
array(
'attributes' => array(
'class' => 'block-edit',
'title' => t('Edit this block'),
),
'query' => drupal_get_destination(),
'html' => TRUE,
......@@ -37,6 +38,7 @@ function phptemplate_preprocess_block_editing(&$vars, $hook) {
array(
'attributes' => array(
'class' => 'block-edit',
'title' => t('Configure this block'),
),
'query' => drupal_get_destination(),
'html' => TRUE,
......@@ -50,6 +52,7 @@ function phptemplate_preprocess_block_editing(&$vars, $hook) {
array(
'attributes' => array(
'class' => 'block-edit',
'title' => t('Edit this menu'),
),
'query' => drupal_get_destination(),
'html' => TRUE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment