Index: includes/admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/includes/admin.inc,v
retrieving revision 1.154.2.7
diff -u -p -r1.154.2.7 admin.inc
--- includes/admin.inc	15 Sep 2009 16:47:09 -0000	1.154.2.7
+++ includes/admin.inc	20 Sep 2009 20:31:29 -0000
@@ -128,8 +128,25 @@ function template_preprocess_views_ui_li
       $item->path = t('Warning! Broken view!');
     }
     else {
-      $item->path = $raw_path = $view->get_path();
-      $item->path = $item->path && empty($view->disabled) && strpos($item->path, '%') === FALSE ? l($item->path, $item->path) : check_plain($item->path);
+      $view->init_display();   // Make sure all the handlers are set up
+      $all_paths = array();
+      foreach ($view->display as $display) {
+        if (!empty($display->handler) && $display->handler->has_path()) {
+          $one_path = $display->handler->get_option('path');
+          if (empty($path_sort)) {
+            $path_sort = strtolower($one_path);
+          }
+          if (empty($view->disabled) && strpos($one_path, '%') === FALSE) {
+            $all_paths[] = l($one_path, $one_path);
+          } 
+          else {
+            $all_paths[] = check_plain($one_path);
+          }
+        }
+      }
+      if (!empty($all_paths)) {
+        $item->path = implode(', ', $all_paths);
+      }
     }
 
     $item->type = $view->type;
