You are here

function _date_views_argument_sort in Date 5.2

Views values vary depending on the op: $op = 'sort' $argtype = 'ASC' or 'DESC' $query = views object $arg = <empty>

File

date/date_views.inc, line 490

Code

function _date_views_argument_sort(&$query, $argtype, $arg, $field_type) {

  // Add no sorting or we will get a groupby for the sort field
  // which will keep the summary totals from working right.
  return;
}