diff -r -u clickpath-1.2/clickpath.module clickpath-1.2-hacked/clickpath.module
--- clickpath-1.2/clickpath.module	2010-03-14 12:56:49.000000000 +1100
+++ clickpath-1.2-hacked/clickpath.module	2010-07-22 11:03:23.000000000 +1000
@@ -186,15 +186,15 @@
     
     $clickpath = clickpath_get_paths();
     if (empty($clickpath[$path])) {
-      $clickpath[$path] = $title;
+      $clickpath[$path] = strip_tags($title);
       while (count($clickpath) > variable_get('clickpath_count', 5)) {
         array_shift($clickpath);
       }
     }
     else {
       unset($clickpath[$path]);
-      $clickpath[$path] = $title;
+      $clickpath[$path] = strip_tags($title);
     }
     $_SESSION['clickpath'] = $clickpath;
   }
-}
\ No newline at end of file
+}
