Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Commits
88b49b8d
Commit
88b49b8d
authored
2 years ago
by
enured
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/develop' into F14320_Allow_specific_HTML_Tags_TinyMCE
parents
5b6e3529
df78d01b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!495
New version 22.12.0
,
!480
F14320: Implemented htmlAllow parameter for tinyMce as clientside check and...
,
!471
F14320: Implemented htmlAllow parameter for tinyMce as clientside check and...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extension/Classes/Core/Helper/OnArray.php
+6
-1
6 additions, 1 deletion
extension/Classes/Core/Helper/OnArray.php
with
6 additions
and
1 deletion
extension/Classes/Core/Helper/OnArray.php
+
6
−
1
View file @
88b49b8d
...
...
@@ -508,7 +508,7 @@ class OnArray {
*/
public
static
function
getFirstValueFromArray
(
$arr
):
string
{
if
(
empty
(
$arr
)
||
!
is_array
(
$arr
))
{
if
(
!
is_array
(
$arr
))
{
return
$arr
;
}
...
...
@@ -522,6 +522,11 @@ class OnArray {
}
else
{
$value
=
$values
[
0
];
}
if
(
empty
(
$value
))
{
$value
=
''
;
}
return
$value
;
}
...
...
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