Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
webform
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
webform
Commits
30a15a9b
Commit
30a15a9b
authored
9 months ago
by
jrockowitz
Committed by
Jacob Rockowitz
8 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3443934
: Item format custom HTML is not valid
parent
20985dfa
No related branches found
No related tags found
2 merge requests
!563
Issue #3443934: Item format custom HTML is not valid
,
!411
#3425433 add reworked paging and getLimit
Pipeline
#351363
canceled
8 months ago
Stage: build
Stage: validate
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Plugin/WebformElement/DateBase.php
+1
-1
1 addition, 1 deletion
src/Plugin/WebformElement/DateBase.php
src/WebformEntityListBuilder.php
+1
-1
1 addition, 1 deletion
src/WebformEntityListBuilder.php
with
2 additions
and
2 deletions
src/Plugin/WebformElement/DateBase.php
+
1
−
1
View file @
30a15a9b
...
...
@@ -194,7 +194,7 @@ abstract class DateBase extends WebformElementBase {
if
(
$format
===
'raw'
)
{
return
$value
;
}
elseif
(
DateFormat
::
load
(
$format
))
{
elseif
(
DateFormat
::
load
(
mb_convert_encoding
(
$format
,
'ASCII'
,
'UTF-8'
)
))
{
return
$this
->
dateFormatter
->
format
(
$timestamp
,
$format
);
}
else
{
...
...
This diff is collapsed.
Click to expand it.
src/WebformEntityListBuilder.php
+
1
−
1
View file @
30a15a9b
...
...
@@ -575,7 +575,7 @@ class WebformEntityListBuilder extends ConfigEntityListBuilder {
$access_type
=
'users'
;
$access_value
=
$account
->
id
();
}
elseif
(
$role
=
$this
->
getEntityStorage
(
'user_role'
)
->
load
(
i
conv
(
'UTF-8'
,
'ASCII//TRANSLIT'
,
$keys
)))
{
elseif
(
$role
=
$this
->
getEntityStorage
(
'user_role'
)
->
load
(
mb_
conv
ert_encoding
(
$keys
,
'ASCII'
,
'UTF-8'
)))
{
$access_type
=
'roles'
;
$access_value
=
$role
->
id
();
}
...
...
This diff is collapsed.
Click to expand it.
Liam Morland
@lkmorlan
mentioned in commit
b55879c6
·
8 months ago
mentioned in commit
b55879c6
mentioned in commit b55879c69ccc46abf1220574d5b1e6da089f16ae
Toggle commit list
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