diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php index 117ade9..eed6b78 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php @@ -783,7 +783,7 @@ function default_summary() { $this->summary_query(); $by = $this->options['summary']['number_of_records'] ? 'num_records' : NULL; - $this->summary_sort($this->options['summary']['sort_order'], $by); + $this->summarySort($this->options['summary']['sort_order'], $by); // Summaries have their own sorting and fields, so tell the View not // to build these. @@ -872,7 +872,7 @@ function summary_basics($count_field = TRUE) { * @param $order * The order selected in the UI. */ - function summary_sort($order, $by = NULL) { + function summarySort($order, $by = NULL) { $this->query->add_orderby(NULL, NULL, $order, (!empty($by) ? $by : $this->name_alias)); }