Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
websocket
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
websocket
Merge requests
!1
Issue
#3149379
: Automated Drupal 9 compatibility fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3149379
: Automated Drupal 9 compatibility fixes
issue/websocket-3375669:3375669-drupal9-10-compatibility
into
8.x-1.x
Overview
0
Commits
1
Pipelines
0
Changes
24
Merged
Pablo Grande
requested to merge
issue/websocket-3375669:3375669-drupal9-10-compatibility
into
8.x-1.x
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
24
Expand
Closes
#3375669
0
0
Merge request reports
Compare
8.x-1.x
8.x-1.x (base)
and
latest version
latest version
b91bde66
1 commit,
1 year ago
24 files
+
331
−
238
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
Search (e.g. *.vue) (Ctrl+P)
modules/websocket_chat/src/Form/ChatForm.php
+
2
−
2
Options
@@ -6,7 +6,7 @@ use Drupal\Core\Form\FormBase;
use
Drupal\Core\Form\FormStateInterface
;
/**
*
Class
ChatForm.
*
The
ChatForm
form class
.
*
* @package Drupal\websocket\Form
*/
@@ -44,7 +44,7 @@ class ChatForm extends FormBase {
* {@inheritdoc}
*/
public
function
submitForm
(
array
&
$form
,
FormStateInterface
$form_state
)
{
drupal_set_message
(
$this
->
t
(
'Your message was submitted!'
));
$this
->
messenger
()
->
addStatus
(
$this
->
t
(
'Your message was submitted!'
));
}
}
Loading