- 🇮🇳India manikandank03 Tamil Nadu
Patch #7 works fine for the 2.5 version with PHP 8.1, thanks @Andyf
When displaying content with bLazy enabled, one gets warnings on PHP 8.1
Deprecated function: trim(): Passing null to parameter #1 ($string) of type string is deprecated in Drupal\blazy\BlazyManagerBase->getIoSettings() (line 293 of modules/contrib/blazy/src/BlazyManagerBase.php).
Patch BlazyManagerBase::getIoSettings()
by null-coalescing the trim()
argument to an empty string:
$thold = trim($this->configLoad('io.threshold') ?? "");
Convert to patch or merge request.
None.
None.
None.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Patch #7 works fine for the 2.5 version with PHP 8.1, thanks @Andyf