diff --git a/sites/all/modules/contrib/taxonomy_manager/taxonomy_manager.module b/sites/all/modules/contrib/taxonomy_manager/taxonomy_manager.module index 5e4c46a..82ba4ce 100644 --- a/sites/all/modules/contrib/taxonomy_manager/taxonomy_manager.module +++ b/sites/all/modules/contrib/taxonomy_manager/taxonomy_manager.module @@ -171,7 +171,7 @@ function taxonomy_manager_taxonomy_manager_tree_operations($term) { $form['up'] = array('#markup' => theme("image", array('path' => $module_path . "images/go-up-small.png", 'alt' => "go up", 'title' => t("Move up"), 'attributes' => array('class' => 'term-up')))); $form['down'] = array('#markup' => theme("image", array('path' => $module_path . "images/go-down-small.png", 'alt' => "go down", 'title' => t("Move down"), 'attributes' => array('class' => 'term-down')))); $link_img = theme("image", array('path' => $module_path . "images/link-small.png", 'alt' => "link to term page")); - $link = l(' ' . $link_img, 'taxonomy/term/' . $term->tid, array('attributes' => array('rel' => 'tag', 'title' => t("Go to term page"), 'target' => '_blank'), 'html' => TRUE)); + $link = l(' ' . $link_img, 'taxonomy/term/' . $term->tid .'/edit', array('attributes' => array('rel' => 'tag', 'title' => t("Go to term edit page"), 'target' => '_blank'), 'html' => TRUE)); $form['link'] = array('#markup' => $link, '#weight' => 10); } return $form;