diff --git includes/admin.inc includes/admin.inc
index a369090..d5fe6e3 100644
--- includes/admin.inc
+++ includes/admin.inc
@@ -128,8 +128,25 @@ function template_preprocess_views_ui_list_views(&$vars) {
       $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;
