Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3057070
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Issue forks
drupal-3057070
Commits
47bdeff1
There was an error fetching the commit references. Please try again later.
Commit
47bdeff1
authored
1 year ago
by
Joachim Noreiko
Browse files
Options
Downloads
Patches
Plain Diff
Fixed error in passing params in BC handling.
parent
5e67911d
No related branches found
No related tags found
No related merge requests found
Pipeline
#156640
passed
1 year ago
Stage: 🏗️ Build
Stage: 🪄 Lint
Stage: 🗜️ Test
Pipeline: drupal-3057070
#156643
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/image/tests/src/Kernel/ImageFieldCreationTrait.php
+1
-1
1 addition, 1 deletion
...odules/image/tests/src/Kernel/ImageFieldCreationTrait.php
with
1 addition
and
1 deletion
core/modules/image/tests/src/Kernel/ImageFieldCreationTrait.php
+
1
−
1
View file @
47bdeff1
...
...
@@ -48,7 +48,7 @@ protected function createImageField($field_name, $entity_type, $bundle = '', $st
elseif
(
is_array
(
$bundle
))
{
@
trigger_error
(
'Calling '
.
__METHOD__
.
'() without the $entity_type argument is deprecated in drupal:10.3.0 and this argument will be required in drupal:11.0.0. See https://www.drupal.org/node/3441322'
,
E_USER_DEPRECATED
);
return
$this
->
createImageField
(
$field_name
,
'node'
,
'node'
,
$entity_type
,
$bundle
,
$storage_settings
,
$field_settings
,
$widget_settings
,
$formatter_settings
,
$description
);
return
$this
->
createImageField
(
$field_name
,
'node'
,
$entity_type
,
$bundle
,
$storage_settings
,
$field_settings
,
$widget_settings
,
$formatter_settings
,
$description
);
}
FieldStorageConfig
::
create
([
...
...
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