Index: views_plugin_display.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/plugins/views_plugin_display.inc,v
retrieving revision 1.4
diff -u -r1.4 views_plugin_display.inc
--- views_plugin_display.inc	10 Sep 2008 20:19:45 -0000	1.4
+++ views_plugin_display.inc	16 Sep 2008 12:02:49 -0000
@@ -685,7 +685,7 @@
       // Only show the 'link display' if there is more than one option.
       $count = 0;
       foreach ($this->view->display as $display_id => $display) {
-        if ($display->handler->has_path()) {
+        if (is_object($display->handler) && $display->handler->has_path()) {
           $count++;
         }
         if ($count > 1) {

