Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
221
Merge Requests
221
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
0b135d45
Commit
0b135d45
authored
Sep 16, 2020
by
xjm
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
by xjm: More coding standards fixes.
parent
1e593bc3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
core/lib/Drupal/Core/Form/FormBuilder.php
core/lib/Drupal/Core/Form/FormBuilder.php
+1
-1
core/modules/filter/src/Plugin/Filter/FilterCaption.php
core/modules/filter/src/Plugin/Filter/FilterCaption.php
+0
-1
No files found.
core/lib/Drupal/Core/Form/FormBuilder.php
View file @
0b135d45
...
...
@@ -861,7 +861,7 @@ protected function buildFormAction() {
// https://www.drupal.org/node/2504709.
$parsed
=
UrlHelper
::
parse
(
$request_uri
);
unset
(
$parsed
[
'query'
][
static
::
AJAX_FORM_REQUEST
],
$parsed
[
'query'
][
MainContentViewSubscriber
::
WRAPPER_FORMAT
]);
$action
=
$parsed
[
'path'
]
.
(
$parsed
[
'query'
]
?
(
'?'
.
UrlHelper
::
buildQuery
(
$parsed
[
'query'
]))
:
''
);
$action
=
$parsed
[
'path'
]
.
(
$parsed
[
'query'
]
?
(
'?'
.
UrlHelper
::
buildQuery
(
$parsed
[
'query'
]))
:
''
);
return
UrlHelper
::
filterBadProtocol
(
$action
);
}
...
...
core/modules/filter/src/Plugin/Filter/FilterCaption.php
View file @
0b135d45
...
...
@@ -3,7 +3,6 @@
namespace
Drupal\filter\Plugin\Filter
;
use
Drupal\Component\Utility\Html
;
use
Drupal\Component\Utility\Xss
;
use
Drupal\Core\Plugin\ContainerFactoryPluginInterface
;
use
Drupal\filter\FilterPluginManager
;
use
Drupal\filter\FilterProcessResult
;
...
...
xjm
@xjm
mentioned in commit
0c7dc096
·
Sep 16, 2020
mentioned in commit
0c7dc096
mentioned in commit 0c7dc0963da6ab33aa86d1904bec8de50ff966fb
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment