- Issue created by @promes
- ๐ฎ๐ณIndia abhishek_virasat
abhishek_gupta1 โ made their first commit to this issueโs fork.
- ๐ฎ๐ณIndia abhishek_virasat
@promes, I have fixed the issue and created MR. please review it once
- ๐ณ๐ฑNetherlands promes
Your solution:
$node_body .= ' - ' . t('see') . ' ' . $link . '
';
is ok, but better use $this->t like the rest of the source:
$node_body .= ' - ' . $this->t('see') . ' ' . $link . '
';
Thanks for this quick patch.