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
!11191
Notify.cancel_confirm fix.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Notify.cancel_confirm fix.
issue/drupal-3028634:drupal-3028634-notify-cancel-default-updated
into
11.x
Overview
11
Commits
5
Pipelines
11
Changes
7
Open
mdranove
requested to merge
issue/drupal-3028634:drupal-3028634-notify-cancel-default-updated
into
11.x
2 months ago
Overview
11
Commits
5
Pipelines
11
Changes
7
Expand
Make use of notify.cancel_confirm configuration and update tests.
0
0
Merge request reports
Compare
11.x
version 10
0935d3a4
2 months ago
version 9
a2cbe35a
2 months ago
version 8
4bb32b03
2 months ago
version 7
7a0c6bab
2 months ago
version 6
9f726875
2 months ago
version 5
db87760d
2 months ago
version 4
346e6743
2 months ago
version 3
30e16304
2 months ago
version 2
047fdae6
2 months ago
version 1
307b21ed
2 months ago
11.x (base)
and
latest version
latest version
e18cb3ce
5 commits,
2 months ago
version 10
0935d3a4
4 commits,
2 months ago
version 9
a2cbe35a
3 commits,
2 months ago
version 8
4bb32b03
5 commits,
2 months ago
version 7
7a0c6bab
4 commits,
2 months ago
version 6
9f726875
3 commits,
2 months ago
version 5
db87760d
2 commits,
2 months ago
version 4
346e6743
1 commit,
2 months ago
version 3
30e16304
1 commit,
2 months ago
version 2
047fdae6
1 commit,
2 months ago
version 1
307b21ed
1 commit,
2 months ago
7 files
+
62
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
core/modules/dblog/tests/src/Functional/DbLogTest.php
+
1
−
1
Options
@@ -502,7 +502,7 @@ private function doUser(): void {
// Delete the user created at the start of this test.
// We need to POST here to invoke batch_process() in the internal browser.
$this
->
drupalGet
(
'user/'
.
$user
->
id
()
.
'/cancel'
);
$this
->
submitForm
([
'user_cancel_method'
=>
'user_cancel_reassign'
],
'Confirm'
);
$this
->
submitForm
([
'user_cancel_method'
=>
'user_cancel_reassign'
,
'edit-user-cancel-confirm'
=>
0
],
'Confirm'
);
// View the database log report.
$this
->
drupalGet
(
'admin/reports/dblog'
);
Loading