Just as comment #36 π Fix multilingual site's layout edit context issue with TypeError: Argument 1 passed to UrlHelper::buildQuery() must be of the type array, null given Needs work , I use a patch from Admin toolbar and contextual links should always be rendered in the admin language (if set) π Admin toolbar and contextual links should always be rendered in the admin language (if set) Needs work and just encountered this issue. I've rerolled the patch from comment #44 π Fix multilingual site's layout edit context issue with TypeError: Argument 1 passed to UrlHelper::buildQuery() must be of the type array, null given Needs work to apply on the (latest) MR #4604.
michaelsoetaert β created an issue.
Attached patch does as described.
michaelsoetaert β created an issue.
Attached patch allows the int
type aswell as the string
type.
michaelsoetaert β created an issue.
When using the patch, I got the following error:
TypeError: array_filter(): Argument #1 ($array) must be of type array, null given in array_filter() (line 174 of modules/contrib/layout_builder_lock/layout_builder_lock.module).
I needed to add the #parents
-configuration to the layout_builder_lock_regions
form element to fix the issue.
michaelsoetaert β made their first commit to this issueβs fork.
Sadly, the patch in comment
#13
π
Timeout on large sites nodes during install
Needs review
still resulted in timeouts on our higher environments (due to different PHP values). The issue seemed to be the large amount of data being loaded in views_url_alias_rebuild_path
, since it's retrieving the complete Entity
-object of each path alias.
I decided to try the approach @dstorozhuk suggested (using the Batch API). Only loading the path alias IDs in views_url_alias_rebuild_path
, splitting the list in chunks and only loading the Entity
-objects of the given path alias IDs in each batch operation. That seems to have fixed the timeouts.
Attached patch with the described functionality.
I've rerolled the changes from MR#17 on branch 8.x-2.x-with-issue-3396154
on the latest version of the 3.x
branch.
We needed multilingual support (different URL aliases for different translations), which branch 3.x
provides, but we were also getting timeouts because of the size of the website (where the changes in this issue come into play).
Included in release 1.0.0-alpha3
michaelsoetaert β created an issue.
michaelsoetaert β made their first commit to this issueβs fork.
michaelsoetaert β changed the visibility of the branch 3.0.x to active.
michaelsoetaert β changed the visibility of the branch 3438163-videoplayerformatter-wrongfully-not to hidden.
michaelsoetaert β changed the visibility of the branch 3.0.x to hidden.
michaelsoetaert β created an issue.
When used in conjunction with
#3364019
β¨
Add feature to clone entities by reference fields like Paragraphs
RTBC
to clone referenced entities, the entities would still be loaded in the current language and not the requested translation language. Properly setting the translation language in the $form_state
fixes this issue.
Attached is the updated patch.
The previous patch contained changes from another patch. I've removed that (wrongfully added) code.
Patch with the proposed changes.
michaelsoetaert β created an issue.
The underlying issue has finally been fixed for the ff_mpeg module and a new release ( 8.x-1.2 β ) is available. Updating to this new release will solve this issue.
Closing this issue.
I can confirm the issue is still present on Drupal 10.1 and this patch fixes it.
The patch in comment
#19
β¨
Output multiple values of a query param with repeating param name
Needs work
didn't apply on Drupal Core 10.0.9
, so I've rerolled it.
Issue has been fixed and added to latest release 1.0.0-alpha2
.
Issue has been fixed and added to latest release 1.0.0-alpha2
.
michaelsoetaert β made their first commit to this issueβs fork.
michaelsoetaert β made their first commit to this issueβs fork.
Make sure that your hosting supports this. I was having the same issue on Acquia and after some research, I found it only supports the -t
flag. If your hosting doesn't support the -bs
flag, you can configure a new sendmail
command in your settings.php
file.
This is the documentation for Acquia I followed.
I've rerolled the patch in
#158
π
Admin toolbar and contextual links should always be rendered in the admin language (if set)
Needs work
so that it applies on the latest versions (10.1.x
, 10.0.4
& 9.5.4
).
I've tested the proposed solution and can confirm that it works with drupal/token 1.11.0
.
michaelsoetaert β created an issue.