? plugins/task_handlers/.new.aO46Il
Index: includes/display-edit.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/includes/display-edit.inc,v
retrieving revision 1.7.2.4
diff -u -p -r1.7.2.4 display-edit.inc
--- includes/display-edit.inc	15 Jan 2009 23:42:35 -0000	1.7.2.4
+++ includes/display-edit.inc	27 Jan 2009 06:01:37 -0000
@@ -211,7 +211,7 @@ function theme_panels_edit_display_form(
     );
 
     $content[$panel_id] = theme('panels_panel_dnd', $content[$panel_id], $panel_id, $title, $panel_buttons);
-   }
+  }
 
   $output .= drupal_render($form);
   panels_load_include('display-render');
Index: panels_views/panels_views.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/panels_views/panels_views.module,v
retrieving revision 1.5.2.2
diff -u -p -r1.5.2.2 panels_views.module
--- panels_views/panels_views.module	16 Jan 2009 21:47:38 -0000	1.5.2.2
+++ panels_views/panels_views.module	27 Jan 2009 06:01:38 -0000
@@ -436,6 +436,8 @@ function panels_views_panes_render($subt
   }
   $view->set_arguments($args);
 
+  $allow = $view->display_handler->get_option('allow');
+
   if ($allow['path_override'] && !empty($conf['path'])) {
     $view->display_handler->set_option('path', $conf['path']);
   }
@@ -446,13 +448,13 @@ function panels_views_panes_render($subt
   $block->subject = $view->get_title();
 
   if (($allow['link_to_view'] && !empty($conf['link_to_view'])) ||
-      (!$allow['link_to_view'] && $view->display_handler->get_option['link_to_view'])) {
+      (!$allow['link_to_view'] && $view->display_handler->get_option('link_to_view'))) {
     $block->title_link = $view->get_url();
   }
 
   // more link
   if (($allow['more_link'] && !empty($conf['more_link'])) ||
-      (!$allow['more_link'] && $view->display_handler->get_option['more_link'])) {
+      (!$allow['more_link'] && $view->display_handler->get_option('more_link'))) {
     $block->more = array('href' => $view->get_url());
     $view->display_handler->set_option('use_more', FALSE);
     // make sure the view runs the count query so we know whether or not the more link
@@ -475,12 +477,12 @@ function panels_views_panes_render($subt
 
   $block->content = $view->preview();
 
-  if ($view->total_rows <= $view->display_handler->get_option('items_per_page')) {
+  if (empty($view->total_rows) || $view->total_rows <= $view->display_handler->get_option('items_per_page')) {
     unset($block->more);
   }
 
   if (($allow['feed_icons'] && !empty($conf['feed_icons'])) ||
-      (!$allow['feed_icons'] && $view->display_handler->get_option['feed_icons'])) {
+      (!$allow['feed_icons'] && $view->display_handler->get_option('feed_icons'))) {
     $new_feeds = drupal_add_feed();
     if ($diff = array_diff(array_keys($new_feeds), array_keys($stored_feeds))) {
       foreach ($diff as $url) {
@@ -506,7 +508,7 @@ function panels_views_panes_edit($id, $p
   if (empty($conf)) {
     $conf['link_to_view'] = $view->display_handler->get_option('link_to_view');
     $conf['more_link'] = $view->display_handler->get_option('more_link');
-    $conf['feed_icons'] = $pv->feed_icons;
+    $conf['feed_icons'] = FALSE;
     $conf['use_pager'] = $view->display_handler->get_option('use_pager');
     $conf['element_id'] = $view->display_handler->get_option('element_id');
     $conf['items_per_page'] = $view->display_handler->get_option('items_per_page');
@@ -515,6 +517,8 @@ function panels_views_panes_edit($id, $p
     $conf['url'] = $view->get_path();
   }
 
+  $form = array();
+
   foreach ($view->display_handler->get_argument_input() as $id => $argument) {
     if ($argument['type'] == 'user') {
       $form['arguments'][$id] = array(
Index: plugins/content_types/profile_fields.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/plugins/content_types/Attic/profile_fields.inc,v
retrieving revision 1.1.2.2
diff -u -p -r1.1.2.2 profile_fields.inc
--- plugins/content_types/profile_fields.inc	15 Jan 2009 23:42:35 -0000	1.1.2.2
+++ plugins/content_types/profile_fields.inc	27 Jan 2009 06:01:39 -0000
@@ -6,7 +6,6 @@
  * Callback function to supply a list of content types.
  */
 function panels_profile_fields_panels_content_types() {
-  $items = array();
   if (module_exists('profile') && !is_null(profile_categories())) {
     $items['profile_fields'] = array(
       'title' => t('Profile Fields'),
@@ -18,8 +17,8 @@ function panels_profile_fields_panels_co
       'edit callback' => 'panels_profile_fields_configure',
       'title callback' => 'panels_profile_fields_configure_title',
     );
+    return $items;
   }
-  return $items;
 }
 
 /**
