Index: clickpath.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/clickpath/clickpath.module,v
retrieving revision 1.1.2.1.2.3
diff -u -p -r1.1.2.1.2.3 clickpath.module
--- clickpath.module	18 Dec 2008 17:37:45 -0000	1.1.2.1.2.3
+++ clickpath.module	31 May 2009 21:47:50 -0000
@@ -167,7 +167,13 @@ function clickpath_save_path($path) {
   }
   
   if ($page_match) {
-    $title = _clickpath_path_is_frontpage($path) ? t('Home') : drupal_get_title();
+    if (_clickpath_path_is_frontpage($path)) {
+      $title = t('Home');
+    }
+    else {
+      $menu_item = menu_get_item($path);
+      $title = !empty($menu_item) ? $menu_item['title'] : drupal_get_title();
+    }
     $clickpath = clickpath_get_paths();
     if (empty($clickpath[$path])) {
       $clickpath[$path] = $title;
