- π«π·France nicoloye
Based on @bobburns suggestion, here is the patch.
I tested it successfully on a project.
Drupal 9.49 PHP 8.1
Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in . . . /domain/settings_custom_url.inc on line 61
Changed $pattern = explode('/', $original_path);
To $pattern = explode('/', $original_path ?: '');
Did not find this in the issues anywhere
Needs review
3.17
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Based on @bobburns suggestion, here is the patch.
I tested it successfully on a project.