- Status changed to RTBC
about 1 year ago 5:41pm 1 September 2023
Running the module with PHP 8 shows the following notice.
Deprecated: Required parameter $original_path follows optional parameter $path in subpathauto.module on line 72
The message is caused by the following function definition.
function subpathauto_lookup_subpath($action, $path = '', $original_path, $path_language = NULL)
$original_path
is put between two parameters with default values ($path
and $path_language
) which is deprecated in PHP 8.
Either $path
is left without default value or the parameters are re-ordered.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.