PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.8
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.8
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/controllers/FrmCronController.php +3 -4 6.326.8 View file →
@@ -34,10 +34,8 @@
34 34 /**
35 35 * Schedules cron events.
36 36 *
37 37 * @since 6.7
38 - *
39 - * @return void
40 38 */
41 39 public static function schedule_events() {
42 40 $events = self::get_events();
43 41
@@ -59,11 +57,12 @@
59 57 *
60 58 * @return void
61 59 */
62 60 public static function remove_crons() {
63 - foreach ( self::get_events() as $event => $recurrence ) {
61 + $events = self::get_events();
62 +
63 + foreach ( $events as $event => $recurrence ) {
64 64 $timestamp = wp_next_scheduled( $event );
65 -
66 65 if ( false !== $timestamp ) {
67 66 wp_unschedule_event( $timestamp, $event );
68 67 }
69 68 }