OJS 3.1.2-2 Editorial Report Emails

Hi all,

We’re looking into this – but in the meantime, the best way to stop the notifications from going out is to edit classes/task/StatisticsReport.inc.php, find the lines (40-41):

/**
 * @copydoc ScheduledTask::executeActions()
 */
public function executeActions() : bool
{

…and add return true; just after those, so that they read:

/**
 * @copydoc ScheduledTask::executeActions()
 */
public function executeActions() : bool
{
        return true;

Regards,
Alec Smecher
Public Knowledge Project Team

2 Likes