--- views_plugin_display.inc	Fri Sep 18 18:52:00 2009
+++ views_plugin_display_new.inc	Fri Sep 18 18:55:56 2009
@@ -166,7 +166,7 @@ class views_plugin_display extends views
       'use_ajax' => array('use_ajax'),
       'items_per_page' => array('items_per_page', 'offset', 'use_pager', 'pager_element'),
       'use_pager' => array('items_per_page', 'offset', 'use_pager', 'pager_element'),
-      'use_more' => array('use_more', 'use_more_text', 'more_url'),
+      'use_more' => array('use_more', 'use_more_text', 'more_url', 'more_url_format'),
       'link_display' => array('link_display'),
       'distinct' => array('distinct'),
       'exposed_block' => array('exposed_block'),
@@ -241,6 +241,8 @@ class views_plugin_display extends views
           'pager_element'  => TRUE,
           'use_more' => TRUE,
           'use_more_text' => TRUE,
+          'more_url' => TRUE,
+          'more_url_format' => TRUE,
           'distinct' => TRUE,
           'exposed_block' => TRUE,
 
@@ -344,6 +346,9 @@ class views_plugin_display extends views
       'more_url' => array(
         'default' => '',
       ),
+      'more_url_format' => array(
+        'default' => FILTER_FORMAT_DEFAULT,
+      ),
       'link_display' => array(
         'default' => '',
       ),
@@ -914,6 +919,8 @@ class views_plugin_display extends views
           '#description' => t('A Drupal path or external URL the more link will point to. Note that this will override the link display setting above.'),
           '#default_value' => $this->get_option('more_url'),
         );
+        
+        $form['more_url_format'] = filter_form($this->get_option('more_url_format'), NULL, array('more_url_format'));
         break;
       case 'distinct':
         $form['#title'] .= t('Display only distinct items, without duplicates.');
