Bug $actor not passed from logModeratorAction() to moderatorLogger()->log()

There is a bug in this version
G

gigipmc

Guest
In XF\Logger:
PHP:

Code:
public function logModeratorAction($type, $content, $action, array $params = [], $throw = true)
{
    return $this->moderatorLogger()->log($type, $content, $action, $params, $throw);
}

In XF\ModeratorLog\Logger:
PHP:

Code:
public function log($type, $content, $action, array $params = [], $throw = true, ?User $actor = null)
{
    .... $actor = $actor ?: \XF::visitor();

$actor is never passed and therefore always defaults to \XF::visitor() which is undesired when...

Read more

Continue reading...