priti197 โ made their first commit to this issueโs fork.
priti197 โ made their first commit to this issueโs fork.
priti197 โ created an issue.
@ericvl, there is no need of typecasting at line 69 & 70 as per patch #4. Variables $c1, $c2 are simply defined for iteration of the for() loop.
@mondrake, MR !64 is created to fix the addressed issue.
Thank you.
priti197 โ made their first commit to this issueโs fork.
priti197 โ created an issue.
Can confirm the error in Drupal 10.3.9, Scheduler 2.1.0 version
MR created to fix the error MR !218
priti197 โ made their first commit to this issueโs fork.
Could not reproduce this error.
ConditionalFieldsElementAlterHelper does require 2 arguments, see ConditionalFieldsElementAlterHelper.php line 38
These 2 arguments are defined and provided in conditional_fields.services.yml line 24
So if only 0 are being passed it implies that the updated conditional_fields.services.yml file is not being respected. Clearing cache (drush cache-rebuild) should resolve the issue.
priti197 โ made their first commit to this issueโs fork.
This issue is due to improper declaration of function validatedBy() in Drupal\Core\Validation\Plugin\Validation\Constraint\UniqueFieldConstraint.
You may have to open an issue for Drupal core. Hope this helps. Thanks.
Looks like this was taken care in
https://www.drupal.org/project/svg_icon/issues/3462212
๐
Get the gitlab pipelines passing all the linting things
Fixed
MR link: https://git.drupalcode.org/project/svg_icon/-/merge_requests/7/diffs#adf...
Same changes needs to to applied in 2.0.0-beta1
Could not reproduce this error.
DownloadManager does require 6 arguments, see AccessStorage.php line 34
These 6 arguments are defined and provided in stage_file_proxy.services.yml
So if only 5 are being passed it implies that the updated stage_file_proxy.services.yml file is not being respected. Clearing cache (drush cache-rebuild) should resolve the issue.
priti197 โ made their first commit to this issueโs fork.
priti197 โ made their first commit to this issueโs fork.
priti197 โ made their first commit to this issueโs fork.
The error is from field_formatter_class module. Refer below issue thread:
https://www.drupal.org/project/field_formatter_class/issues/3473891
๐
Call to undefined method Drupal\views\Form\ViewsForm::getEntity()
Active
priti197 โ made their first commit to this issueโs fork.
Could not replicate this error.
AccessStorage does require 8 arguments, see AccessStorage.php line 34
These 8 arguments are defined and provided in permissions_by_term.services.yml
So if only 7 are being passed it implies that the updated permissions_by_term.services.yml file is not being respected. Clearing cache (drush cache-rebuild) should overcome this issue.
Created patch to fix deprecated function error issue.
priti197 โ changed the visibility of the branch 3487225-remove-deprecated-methods to hidden.
priti197 โ made their first commit to this issueโs fork.
Created a patch to fix dynamic property creation error for $stringTranslation
Created patch to fix the deprecation errors.
@farhanmae, patch is attached, let me know if it works for you. Thanks.
Created MR !21 to fix the issue.
priti197 โ changed the visibility of the branch 3491165-parameter-requeststack-of to active.
priti197 โ changed the visibility of the branch 3491165-parameter-requeststack-of to hidden.
priti197 โ made their first commit to this issueโs fork.
Created a patch to fix the issue.
Created a patch to fix the issue.
Patch created to fix the issue.
priti197 โ made their first commit to this issueโs fork.
Could not replicate this behaviour. Might be a caching issue or needs to clear caches.
Unable to replicate the issue, screenshots attached.
Patch is created to fix the issue.
Patch created to fix the issue.
Patch is created to fix the issue.
@zebda, I don't see array key "location" at line 669 of modules/contrib/views_json_source/src/Plugin/views/query/ViewsJsonQuery.php
Screenshot attached.
Patch created to fix this issue.
Created a patch to fix this issue.
Patch created to fix the issue, please review.
Solution:
Replace line 205 of /src/Plugin/views/row/XmlFeedViewsFields.php
From
$fieldLine = str_replace($fieldArray[0][$i], $data, $fieldLine);
To
$fieldLine = str_replace($fieldArray[0][$i], $data ?? '', $fieldLine);