diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-13 07:54:27 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-13 07:54:27 +0000 |
commit | eddb278a0a4dd0ccbfc0370349d2a9f9cd97fea6 (patch) | |
tree | 7022b019dd2e3a5dfcf762f2787c82a1ed2aafab /modules/taxonomy/taxonomy.module | |
parent | 21ac9f1917595492fa9997e565bf11ec8d8cd14f (diff) | |
download | brdo-eddb278a0a4dd0ccbfc0370349d2a9f9cd97fea6.tar.gz brdo-eddb278a0a4dd0ccbfc0370349d2a9f9cd97fea6.tar.bz2 |
#174254 by pwolanin: Taxonomy term pages need proper titles
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 4c1aeb540..45f8f58a3 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -152,8 +152,8 @@ function taxonomy_menu() { $items['admin/content/taxonomy/%taxonomy_vocabulary/add/term'] = array( 'title' => 'Add term', - 'page callback' => 'drupal_get_form', - 'page arguments' => array('taxonomy_form_term', 3), + 'page callback' => 'taxonomy_add_term_page', + 'page arguments' => array(3), 'type' => MENU_LOCAL_TASK, 'parent' => 'admin/content/taxonomy/%taxonomy_vocabulary', 'file' => 'taxonomy.admin.inc', |