Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
b5279723
Commit
b5279723
authored
Jun 17, 2013
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2020695
by heddn: Rename Views method summary_join() to summaryJoin().
parent
9b3f8719
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
core/modules/views/lib/Drupal/views/ManyToOneHelper.php
core/modules/views/lib/Drupal/views/ManyToOneHelper.php
+1
-1
core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php
...iews/lib/Drupal/views/Plugin/views/argument/ManyToOne.php
+1
-1
core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php
...s/views/lib/Drupal/views/Plugin/views/argument/String.php
+1
-1
No files found.
core/modules/views/lib/Drupal/views/ManyToOneHelper.php
View file @
b5279723
...
...
@@ -119,7 +119,7 @@ public function getJoin() {
* Provide the proper join for summary queries. This is important in part because
* it will cooperate with other arguments if possible.
*/
function
summary
_j
oin
()
{
public
function
summary
J
oin
()
{
$field
=
$this
->
handler
->
relationship
.
'_'
.
$this
->
handler
->
table
.
'.'
.
$this
->
handler
->
field
;
$join
=
$this
->
getJoin
();
...
...
core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php
View file @
b5279723
...
...
@@ -173,7 +173,7 @@ protected function summaryQuery() {
$this
->
tableAlias
=
$this
->
query
->
ensureTable
(
$this
->
table
,
$this
->
relationship
,
$join
);
}
else
{
$this
->
tableAlias
=
$this
->
helper
->
summary
_j
oin
();
$this
->
tableAlias
=
$this
->
helper
->
summary
J
oin
();
}
// Add the field.
...
...
core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php
View file @
b5279723
...
...
@@ -151,7 +151,7 @@ protected function summaryQuery() {
$this
->
ensureMyTable
();
}
else
{
$this
->
tableAlias
=
$this
->
helper
->
summary
_j
oin
();
$this
->
tableAlias
=
$this
->
helper
->
summary
J
oin
();
}
if
(
empty
(
$this
->
options
[
'glossary'
]))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment