diff options
Diffstat (limited to 'modules/dashboard')
-rw-r--r-- | modules/dashboard/dashboard.module | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/dashboard/dashboard.module b/modules/dashboard/dashboard.module index 301cb6c1b..86f14e034 100644 --- a/modules/dashboard/dashboard.module +++ b/modules/dashboard/dashboard.module @@ -27,6 +27,7 @@ function dashboard_help($path, $arg) { function dashboard_menu() { $items['admin/dashboard'] = array( 'title' => 'Dashboard', + 'description' => 'View and customize your dashboard', 'page callback' => 'dashboard_admin', 'access arguments' => array('access dashboard'), // Make this appear first, so for example, in admin menus, it shows up on @@ -35,6 +36,7 @@ function dashboard_menu() { ); $items['admin/dashboard/customize'] = array( 'title' => 'Dashboard', + 'description' => 'View and customize your dashboard', 'page callback' => 'dashboard_admin', 'page arguments' => array(TRUE), 'access arguments' => array('access dashboard'), |