Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
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
drupal
Merge requests
!8566
Checked if the status key exists before accessing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Checked if the status key exists before accessing
issue/drupal-3457717:3457717-undefined-array-key
into
11.x
Overview
0
Commits
2
Pipelines
2
Changes
1
Open
Gaurav
requested to merge
issue/drupal-3457717:3457717-undefined-array-key
into
11.x
10 months ago
Overview
0
Commits
2
Pipelines
2
Changes
1
Expand
Closes
#3457717
0
0
Merge request reports
Compare
11.x
version 1
4e4b7935
10 months ago
11.x (HEAD)
and
latest version
latest version
d6252d0b
2 commits,
8 months ago
version 1
4e4b7935
1 commit,
10 months ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
core/modules/editor/editor.module
+
1
−
1
Options
@@ -106,7 +106,7 @@ function editor_form_filter_admin_format_submit($form, FormStateInterface $form_
// @see editor.image_upload_settings.1
// @see editor.schema.yml
$image_upload_settings
=
$editor
->
getImageUploadSettings
();
if
(
!
$image_upload_settings
[
'status'
])
{
if
(
isset
(
$image_upload_settings
[
'status'
])
&&
!
$image_upload_settings
[
'status'
])
{
$editor
->
setImageUploadSettings
([
'status'
=>
FALSE
]);
}
$editor
->
save
();
Loading