Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
views_aggregator
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
views_aggregator
Merge requests
!2
Resolve
#3322452
"Warning undefined array"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Resolve
#3322452
"Warning undefined array"
issue/views_aggregator-3322452:3322452-warning-undefined-array
into
2.0.x
Overview
0
Commits
3
Pipelines
2
Changes
1
Open
Pablo López
requested to merge
issue/views_aggregator-3322452:3322452-warning-undefined-array
into
2.0.x
2 years ago
Overview
0
Commits
3
Pipelines
2
Changes
1
Expand
Closes
#3322452
0
0
Merge request reports
Compare
2.0.x
version 3
bb2ed9be
6 months ago
version 2
969de841
2 years ago
version 1
969de841
2 years ago
2.0.x (HEAD)
and
latest version
latest version
53ca8490
3 commits,
6 months ago
version 3
bb2ed9be
1 commit,
6 months ago
version 2
969de841
1 commit,
2 years ago
version 1
969de841
19 commits,
2 years ago
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Plugin/views/style/Table.php
+
3
−
1
Options
@@ -671,7 +671,9 @@ class Table extends ViewsTable {
// Get field from the relationship_entities, otherwise from the entity.
if
(
$field_handler
->
options
[
'relationship'
]
&&
$field_handler
->
options
[
'relationship'
]
!=
'none'
)
{
$relationship
=
$field_handler
->
options
[
'relationship'
];
$source
=
$result_row
->
_relationship_entities
[
$relationship
];
if
(
isset
(
$result_row
->
_relationship_entities
[
$relationship
]))
{
$source
=
$result_row
->
_relationship_entities
[
$relationship
];
}
}
else
{
$source
=
$result_row
->
_entity
;
Loading