Skip to content

Commit

Permalink
#48 preserve rights split on sample page
Browse files Browse the repository at this point in the history
  • Loading branch information
BBGuy committed Oct 31, 2014
1 parent 0802736 commit 57b00da
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sites/all/modules/custom/kendra_wf/kendra_wf.module
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,11 @@ function kendra_wf_get_current_aggregated_rights_table_submit($form, &$form_stat
$item = explode('=', $value);
$query[$item[0]]= $item[1];
}
// Add the range if sppecified (used by views exposed filter).
$qp = drupal_get_query_parameters();
if (isset($qp['range'])) {
$query['range']= $qp['range'];
}
$options = array('query' => $query);
// Call the page with the new query parameters.
drupal_goto($path, $options);
Expand Down

0 comments on commit 57b00da

Please sign in to comment.