The latest version of Drupal core, module has the following message on the 'Available updates' page:
Project not supported: This project is no longer supported, and is no longer available for download. Disabling everything included by this project is strongly recommended!
Can you please provide updated module that supports Drupal 10
Thanks for providing stable release for Drupal 10
The latest version of Drupal core, module has the following message on the 'Available updates' page:
Project not supported: This project is no longer supported, and is no longer available for download. Disabling everything included by this project is strongly recommended!
Can you please provide updated module that supports Drupal 10
jw_player version 8.x-1.0-beta6 is working successfully in the Drupal 9.5.10
Kindly let me know if any stable release available for compatibility with D10
and also recent time showing below message in the module has the following message on the 'Available updates' page:
Project not supported: This project is no longer supported, and is no longer available for download. Disabling everything included by this project is strongly recommended!
Includes: JW Player
Kindly let me know if any stable release available for compatibility with D10.
pandurengan.jegadeesan → created an issue.
@DamienMcKenna please change the title and description.
actually, I planned to create the new ticket /issue, somehow it is modified to the old ticket:
A new ticket /issue is created:
https://www.drupal.org/project/field_collection_to_paragraphs/issues/336...
🐛
Drush migration script is not working as expected
Active
sorry for any inconvenience is caused
pandurengan.jegadeesan → created an issue.
Original function is
protected static function placeholderEscape($value) {
return $value instanceof MarkupInterface ? (string) $value : Html::escape($value);
}
and changed to below function and it is working but with a warning message
Warning: Array to string conversion in core\lib\Drupal\Component\Render\FormattableMarkup.php on line 274
protected static function placeholderEscape($value) {
if ($value instanceof MarkupInterface) {
return (string) $value;
} else {
$value = (string) $value;
return Html::escape($value);
}
}
is it the correct one or need to change it?