Hi,
I think I've hit another problem.
File:
/home/.../public_html/components/com_comprofiler/plugin/user/plug_cbactivity/library/Params/ActivityStreamParams.php
Is:
Code:
public function getFollowUser(): bool
{
if ( ! $this->getFollow() ) {
return false;
}
return $this->getBool( 'follow_asset', true );
}
I think it should be:
Code:
public function getFollowUser(): bool
{
if ( ! $this->getFollow() ) {
return false;
}
return $this->getBool( 'follow_user', true );
}
Regards,