From 0149995ee72876533f05ed703fca10ba9692216c Mon Sep 17 00:00:00 2001 From: brandon_beeler Date: Fri, 24 May 2013 18:01:47 -0400 Subject: [PATCH] Issue #2002448: Rename Views Method default_display_filters_user() to defaultDisplayFiltersUser --- .../lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php b/core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php index b5c236d..6c4e20a 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php @@ -270,7 +270,7 @@ function left_query($options) { } // Namespace conditions. $where =& $subquery->conditions(); - $this->alter_subquery_condition($subquery, $where); + $this->alterSubqueryCondition($subquery, $where); // Not sure why, but our sort order clause doesn't have a table. // TODO: the call to add_item() above to add the sort handler is probably // wrong -- needs attention from someone who understands it. @@ -309,7 +309,7 @@ function left_query($options) { * * (Though why is the condition we get in a simple query 3 levels deep???) */ - function alter_subquery_condition(AlterableInterface $query, &$conditions) { + function alterSubqueryCondition(AlterableInterface $query, &$conditions) { foreach ($conditions as $condition_id => &$condition) { // Skip the #conjunction element. if (is_numeric($condition_id)) { @@ -318,7 +318,7 @@ function alter_subquery_condition(AlterableInterface $query, &$conditions) { } elseif (is_object($condition['field'])) { $sub_conditions =& $condition['field']->conditions(); - $this->alter_subquery_condition($query, $sub_conditions); + $this->alterSubqueryCondition($query, $sub_conditions); } } } -- 1.8.1.msysgit.1