Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sg_youtube
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
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
TYPO3
sg_youtube
Commits
d6a5ac4d
Commit
d6a5ac4d
authored
1 year ago
by
Johannes Kreiner
Browse files
Options
Downloads
Patches
Plain Diff
[BUGFIX] Fix pb:picture htmlspecialchars call with possible null value
parent
2a3879a4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Classes/ViewHelpers/PictureViewHelper.php
+2
-2
2 additions, 2 deletions
Classes/ViewHelpers/PictureViewHelper.php
with
2 additions
and
2 deletions
Classes/ViewHelpers/PictureViewHelper.php
+
2
−
2
View file @
d6a5ac4d
...
...
@@ -202,8 +202,8 @@ class PictureViewHelper extends AbstractViewHelper {
$class
=
$arguments
[
'class'
];
$pictureClass
=
$arguments
[
'pictureClass'
]
??
''
;
$id
=
$arguments
[
'id'
];
$title
=
$arguments
[
'title'
];
$alt
=
$arguments
[
'alt'
];
$title
=
$arguments
[
'title'
]
??
''
;
$alt
=
$arguments
[
'alt'
]
??
''
;
$disableWebp
=
$arguments
[
'disableWebp'
]
??
''
;
try
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment