The RSS argument feeds are not sorted same as view. For example, compare http://groups.drupal.org/og/all with http://groups.drupal.org/og/all/feed. i looked into this a bit but didn't know quite how to fix so i leave it to others.

CommentFileSizeAuthor
#1 patch_70579 bytesmoshe weitzman
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

moshe weitzman’s picture

Assigned: Unassigned » moshe weitzman
Status: Active » Needs review
FileSize
579 bytes

patch attached.

i used the View below for testing. requires that you have a couple nodes in your db with different authors.

  $view = new stdClass();
  $view->name = 'tmp';
  $view->description = '';
  $view->access = array (
);
  $view->view_args_php = '';
  $view->page = TRUE;
  $view->page_title = '';
  $view->page_header = '';
  $view->page_header_format = '1';
  $view->page_footer = '';
  $view->page_footer_format = '1';
  $view->page_empty = '';
  $view->page_empty_format = '1';
  $view->page_type = 'table';
  $view->url = 'tmp';
  $view->use_pager = TRUE;
  $view->nodes_per_page = '10';
  $view->sort = array (
  );
  $view->argument = array (
    array (
      'type' => 'rss_feed',
      'argdefault' => '2',
      'title' => '',
      'options' => '',
      'wildcard' => '',
      'wildcard_substitution' => '',
    ),
  );
  $view->field = array (
    array (
      'tablename' => 'node',
      'field' => 'title',
      'label' => '',
      'handler' => 'views_handler_field_nodelink',
    ),
    array (
      'tablename' => 'users',
      'field' => 'name',
      'label' => '',
      'sortable' => '1',
      'defaultsort' => 'ASC',
    ),
  );
  $view->filter = array (
  );
  $view->exposed_filter = array (
  );
  $view->requires = array(node, users);
  $views[$view->name] = $view;

moshe weitzman’s picture

Status: Needs review » Fixed

committed to head and 4.7 tag.

Anonymous’s picture

Status: Fixed » Closed (fixed)