Hi,
On a site with PHP8.2-FPM, Joomla! 5, latest CB 2.9.0, plug_cbgroupjive/library/Trigger/ActivityTrigger.php raises a deprecated warning in line 74.
Code is:
Code:
} elseif ( preg_match( '/^groupjive\.group\.(\d+)(?:\.([a-zA-Z_]+))?/', $stream->getString( 'parent' ), $matches ) ) {
but should be
Code:
} elseif ( preg_match( '/^groupjive\.group\.(\d+)(?:\.([a-zA-Z_]+))?/', $stream->getString( 'parent', '' ), $matches ) ) {
This quick fix clears prolem