• Resolved askpivot

    (@askpivot)


    Reporting a bug here.

    Flow flow was messing with the WP cron job list – breaking our backups etc. I had to edit wp-content/plugins/flow-flow-social-streams/includes/core/LAActivatorBase.php around line 104 to get the backups working.

    Instead of appending its own intervals to the existing WordPress filters, Flow Flow was replacing it entirely. I had to change this:

    `
    public final function getCronIntervals(){
    return $this->cron_intervals;
    }
    `

    to this:

    `
    public final function getCronIntervals($schedules){
    foreach( $this->cron_intervals as $interval => $schedule ){
    $schedules[$interval] = $schedule;
    }
    return $schedules;
    }
    `

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Oleksandr

    (@awesomeoman)

    Hello, thank you for feedback.
    We will test and fix.

    Thread Starter askpivot

    (@askpivot)

    Hi, I’ve been keeping a watch on your change log, and I don’t see this fix having been applied at this point.

    What’s the status? I’ve disabled plugin updates until I know its resolved. Thanks!

    Plugin Contributor Oleksandr

    (@awesomeoman)

    Hi, we released an update with fixes. You can install it as usual.
    Thank you for notifying.

    • This reply was modified 6 years, 8 months ago by Oleksandr.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Flow-Flow Breaking WP Cron List’ is closed to new replies.