Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
metatag
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
metatag
Commits
5678489d
Commit
5678489d
authored
2 months ago
by
sleitner
Committed by
Damien McKenna
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3518526
by sleitner, damienmckenna: Resolve access check errors.
parent
9a7bbc4b
No related branches found
No related tags found
2 merge requests
!184
Issue #3518526: Resolve access check errors for D10 compatibility custom tags
,
!111
Issue #3378434 by zolt_toth: Empty values not removed from multi-value meta tags
Pipeline
#480052
passed with warnings
2 months ago
Stage: build
Stage: validate
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.txt
+1
-0
1 addition, 0 deletions
CHANGELOG.txt
metatag_custom_tags/src/Form/MetaTagCustomTagForm.php
+1
-0
1 addition, 0 deletions
metatag_custom_tags/src/Form/MetaTagCustomTagForm.php
with
2 additions
and
0 deletions
CHANGELOG.txt
+
1
−
0
View file @
5678489d
Metatag 2.1.x, 202x-xx-xx
-------------------------
#3515603 by claudiu.cristea, damienmckenna: PHP 8.4 support.
#3518526 by sleitner, damienmckenna: Resolve access check errors.
Metatag 2.1.0, 2024-11-07
...
...
This diff is collapsed.
Click to expand it.
metatag_custom_tags/src/Form/MetaTagCustomTagForm.php
+
1
−
0
View file @
5678489d
...
...
@@ -114,6 +114,7 @@ class MetaTagCustomTagForm extends EntityForm {
*/
public
function
exist
(
$id
)
{
$entity
=
$this
->
entityTypeManager
->
getStorage
(
'metatag_custom_tag'
)
->
getQuery
()
->
accessCheck
(
FALSE
)
->
condition
(
'id'
,
$id
)
->
execute
();
return
(
bool
)
$entity
;
...
...
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