diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-16 19:57:45 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-16 19:57:45 +0000 |
commit | ffa47a8ddbaa8cf734e468bae1396cfe128ed2cd (patch) | |
tree | 52b54217f71aac9223010821948b464c75eb7d10 /modules/taxonomy/taxonomy.module | |
parent | 8ee21dd13240614a65c3742e3439e7281de55dda (diff) | |
download | brdo-ffa47a8ddbaa8cf734e468bae1396cfe128ed2cd.tar.gz brdo-ffa47a8ddbaa8cf734e468bae1396cfe128ed2cd.tar.bz2 |
- Patch #635378 by sun, sivaji, carlos8f: wrong local task titles for taxonomy term and user account pages.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index f17aa1b4e..a96132c37 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -248,9 +248,7 @@ function taxonomy_menu() { 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items['taxonomy/term/%taxonomy_term/edit'] = array( - 'title' => 'Edit term', - 'title callback' => 'taxonomy_term_title', - 'title arguments' => array(2), + 'title' => 'Edit', 'page callback' => 'drupal_get_form', 'page arguments' => array('taxonomy_form_term', 2), 'access callback' => 'taxonomy_term_edit_access', |