Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ui_suite_bootstrap
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
ui_suite_bootstrap
Merge requests
!298
Issue
#3531513
by grimreaper: Fatal error with 11.2
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3531513
by grimreaper: Fatal error with 11.2
issue/ui_suite_bootstrap-3531513:3531513-fatal-error-with
into
5.2.x
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Issue #3531513 by grimreaper: Fatal error with 11.2
Florent Torregrosa
requested to merge
issue/ui_suite_bootstrap-3531513:3531513-fatal-error-with
into
5.2.x
1 month ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Closes
#3531513
0
0
Merge request reports
Compare
5.2.x
5.2.x (base)
and
latest version
latest version
41cea2b7
1 commit,
1 month ago
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/HookHandler/PreprocessViewsViewTable.php
+
2
−
1
View file @ 41cea2b7
Edit in single-file editor
Open in Web IDE
Show full file
@@ -85,7 +85,8 @@ class PreprocessViewsViewTable implements ContainerInjectionInterface {
$columnContent
=
''
;
foreach
(
$column
[
'content'
]
as
$content
)
{
$columnContent
.
=
$this
->
renderer
->
render
(
$content
[
'separator'
])
.
$this
->
renderer
->
render
(
$content
[
'field_output'
]);
$columnContent
.
=
isset
(
$content
[
'separator'
])
?
$this
->
renderer
->
render
(
$content
[
'separator'
])
:
''
;
$columnContent
.
=
isset
(
$content
[
'field_output'
])
?
$this
->
renderer
->
render
(
$content
[
'field_output'
])
:
''
;
}
$variables
[
'rows'
][
$rowKey
][
'columns'
][
$columnKey
][
'preparedContent'
]
=
[
Loading