Alen Simonyan β created an issue.
Hi Juraj Nemec,
The previous Drupal version was 7.87, I didn't upgrade the PHP version, it remains 8.2.20
Hi, I have created an issue https://www.drupal.org/project/drupal/issues/3458997 π TypeError: Cannot access offset of type string on string in drupal_array_set_nested_value() (line 6955 of /includes/common.inc). Active , because the search didn't show this one.
I managed to fix this error with this patch.
Please review this patch.
The patch forces the $ref
to be an empty array if no input is provided.
Alen Simonyan β created an issue.
Hi @Lendude,
I diddn't manage to reproduce this on fresh install yet.
Ahh, ok, thanks @mfb, didn't notice
I got an answer.
If this is the case you need to set $email->setTransportDsn('null://null');
in postRender()
function.
@see https://symfony.com/doc/current/mailer.html#disabling-delivery
/**
* {@inheritdoc}
*/
public function postRender(EmailInterface $email): void {
if ($email->getSubType() == 'notifications') {
// Prevent email sending.
$email->setTransportDsn('null://null');
}
}
I got an answer.
If this is the case you need to set $email->setTransportDsn('null://null');
in postRender()
function.
/**
* {@inheritdoc}
*/
public function postRender(EmailInterface $email): void {
if ($email->getSubType() == 'notifications') {
// Prevent email sending.
$email->setTransportDsn('null://null');
}
}
Sorry, uploaded wrong patch, here is the right one.
Somehow it will not apply for version ^10.1 and I have to generate new patch.
How we can skip actual sending of email? I mean the case when I want to pass all the phases, createParams, build, preRender etc, besides actual sending.
How we can skip actual sending of email? I mean the case when I want to pass all the phases, createParams, build, preRender etc, besides actual sending.
Alen Simonyan β made their first commit to this issueβs fork.
Here is the patch for this.
Hi Adam,
I also tried with one of the core modules and it behaves the same
https://drive.google.com/file/d/1X7qqCv8DMaqXBZTSUGuKdzdOqpFZPy49/view?usp=sharing
Alen Simonyan β created an issue.
Inform reader about "addTextHeader" function and point the place users can find all other functions.
Here is a documentation for that:
https://www.drupal.org/docs/contributed-modules/symfony-mailer-0/development/emailbuilder-development-convert-existing β
Alen Simonyan β created an issue.
Here is the patch needs to be applied.
Alen Simonyan β created an issue.
Alen Simonyan β created an issue.
Hi @prabuela, @cilefen
Please let me know if the video is opening this way - https://drive.google.com/file/d/1fGFtuYPqpubom_IjFSWojXmHSib6EgLu/view?u...
I have a big vocablurary where terms overview page is continuing after pager, when I am trying to drag any term to other parent the error message shown on the line 243 of core/modules/taxonomy/src/Form/OverviewTerms.php
.
Alen Simonyan β created an issue.
Add information about CSRF token and add code block explaining how to get the token.