Skip to content
Snippets Groups Projects
Commit 3006fec8 authored by Shanu Chouhan's avatar Shanu Chouhan Committed by Ilcho Vuchkov
Browse files

Issue #3359719 by Shanu Chouhan, vuil: t() calls should be avoided in classes

parent fa55382a
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ class SettingsForm extends ConfigFormBase {
'#type' => 'checkbox',
'#title' => $this->t('Enable mail sending'),
'#default_value' => $config->get('enable_emails'),
'#description' => t('Send an email when content is created or modified.'),
'#description' => $this->t('Send an email when content is created or modified.'),
];
$email_address = !empty($config->get('notify_content_email')) ?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment