Browse Source

DB & CV: Fixed help page

Lacey Sanderson 11 years ago
parent
commit
c14a918373
2 changed files with 6 additions and 6 deletions
  1. 3 3
      tripal_cv/tripal_cv.module
  2. 3 3
      tripal_db/tripal_db.module

+ 3 - 3
tripal_cv/tripal_cv.module

@@ -58,7 +58,7 @@ function tripal_cv_menu() {
     'title' => 'Help',
     'description' => "A description of the Tripal Controlled Vocabulary module including a short description of it's usage.",
     'page callback' => 'theme',
-    'page arguments' => array('tripal_cv_help'),
+    'page arguments' => array('tripal_cv_admin'),
     'access arguments' => array('administer controlled vocabularies'),
     'type' => MENU_LOCAL_TASK,
     'weight' => 10
@@ -295,8 +295,8 @@ function tripal_cv_form_alter(&$form, &$form_state, $form_id) {
 function tripal_cv_theme() {
   $theme_path = drupal_get_path('module', 'tripal_cv') . '/theme';
   $items = array(
-    'tripal_cv_help' => array(
-      'template' => 'tripal_cv_help',
+    'tripal_cv_admin' => array(
+      'template' => 'tripal_cv_admin',
       'arguments' =>  array(NULL),
       'path' => $theme_path,
     ),

+ 3 - 3
tripal_db/tripal_db.module

@@ -37,7 +37,7 @@ function tripal_db_menu() {
     'title' => 'Help',
     'description' => "A description of the Tripal Database module including a short description of it's usage.",
     'page callback' => 'theme',
-    'page arguments' => array('tripal_db_help'),
+    'page arguments' => array('tripal_db_admin'),
     'access arguments' => array('administer db cross-references'),
     'type' => MENU_LOCAL_TASK,
     'weight' => 10
@@ -131,8 +131,8 @@ function tripal_db_views_api() {
 function tripal_db_theme() {
   $theme_path = drupal_get_path('module', 'tripal_db') . '/theme';
   $items = array(
-    'tripal_db_help' => array(
-      'template' => 'tripal_db_help',
+    'tripal_db_admin' => array(
+      'template' => 'tripal_db_admin',
       'arguments' =>  array(NULL),
       'path' => $theme_path,
     ),