? patch Index: clickpath.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/clickpath/Attic/clickpath.module,v retrieving revision 1.1.2.1.2.2 diff -u -p -r1.1.2.1.2.2 clickpath.module --- clickpath.module 12 Dec 2007 04:44:39 -0000 1.1.2.1.2.2 +++ clickpath.module 14 Aug 2008 17:36:06 -0000 @@ -125,7 +125,10 @@ function clickpath_preprocess_page(&$var * Saves the path a user visited on page exit. */ function clickpath_exit() { - clickpath_save_path($_GET['q']); + global $user; + if ($user->uid) { + clickpath_save_path($_GET['q']); + } } function clickpath_get_paths() {