Flow-Flow Breaking WP Cron List
-
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)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Flow-Flow Breaking WP Cron List’ is closed to new replies.