Changeset 2786042
- Timestamp:
- 09/16/2022 03:50:48 PM (3 years ago)
- Location:
- action-scheduler
- Files:
-
- 6 edited
- 1 copied
-
tags/3.5.2 (copied) (copied from action-scheduler/trunk)
-
tags/3.5.2/action-scheduler.php (modified) (5 diffs)
-
tags/3.5.2/changelog.txt (modified) (1 diff)
-
tags/3.5.2/readme.txt (modified) (2 diffs)
-
trunk/action-scheduler.php (modified) (5 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
action-scheduler/tags/3.5.2/action-scheduler.php
r2786022 r2786042 6 6 * Author: Automattic 7 7 * Author URI: https://automattic.com/ 8 * Version: 3.5. 18 * Version: 3.5.2 9 9 * License: GPLv3 10 10 * … … 27 27 */ 28 28 29 if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_ 1' ) && function_exists( 'add_action' ) ) {29 if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_2' ) && function_exists( 'add_action' ) ) { 30 30 31 31 if ( ! class_exists( 'ActionScheduler_Versions', false ) ) { … … 34 34 } 35 35 36 add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_ 1', 0, 0 );36 add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_2', 0, 0 ); 37 37 38 38 /** 39 39 * Registers this version of Action Scheduler. 40 40 */ 41 function action_scheduler_register_3_dot_5_dot_ 1() {41 function action_scheduler_register_3_dot_5_dot_2() { 42 42 $versions = ActionScheduler_Versions::instance(); 43 $versions->register( '3.5. 1', 'action_scheduler_initialize_3_dot_5_dot_1' );43 $versions->register( '3.5.2', 'action_scheduler_initialize_3_dot_5_dot_2' ); 44 44 } 45 45 … … 47 47 * Initializes this version of Action Scheduler. 48 48 */ 49 function action_scheduler_initialize_3_dot_5_dot_ 1() {49 function action_scheduler_initialize_3_dot_5_dot_2() { 50 50 // A final safety check is required even here, because historic versions of Action Scheduler 51 51 // followed a different pattern (in some unusual cases, we could reach this point and the … … 59 59 // Support usage in themes - load this version if no plugin has loaded a version yet. 60 60 if ( did_action( 'plugins_loaded' ) && ! doing_action( 'plugins_loaded' ) && ! class_exists( 'ActionScheduler', false ) ) { 61 action_scheduler_initialize_3_dot_5_dot_ 1();61 action_scheduler_initialize_3_dot_5_dot_2(); 62 62 do_action( 'action_scheduler_pre_theme_init' ); 63 63 ActionScheduler_Versions::initialize_latest_version(); -
action-scheduler/tags/3.5.2/changelog.txt
r2784104 r2786042 1 1 *** Changelog *** 2 3 = 3.5.2 - 2022-09-16 = 4 * Fix - erroneous 3.5.1 release. 2 5 3 6 = 3.5.1 - 2022-09-13 = -
action-scheduler/tags/3.5.2/readme.txt
r2784104 r2786042 4 4 Requires at least: 5.2 5 5 Tested up to: 6.0 6 Stable tag: 3.5. 16 Stable tag: 3.5.2 7 7 License: GPLv3 8 8 Requires PHP: 5.6 … … 47 47 48 48 == Changelog == 49 50 = 3.5.2 - 2022-09-16 = 51 * Fix - erroneous 3.5.1 release. 49 52 50 53 = 3.5.1 - 2022-09-13 = -
action-scheduler/trunk/action-scheduler.php
r2786022 r2786042 6 6 * Author: Automattic 7 7 * Author URI: https://automattic.com/ 8 * Version: 3.5. 18 * Version: 3.5.2 9 9 * License: GPLv3 10 10 * … … 27 27 */ 28 28 29 if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_ 1' ) && function_exists( 'add_action' ) ) {29 if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_2' ) && function_exists( 'add_action' ) ) { 30 30 31 31 if ( ! class_exists( 'ActionScheduler_Versions', false ) ) { … … 34 34 } 35 35 36 add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_ 1', 0, 0 );36 add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_2', 0, 0 ); 37 37 38 38 /** 39 39 * Registers this version of Action Scheduler. 40 40 */ 41 function action_scheduler_register_3_dot_5_dot_ 1() {41 function action_scheduler_register_3_dot_5_dot_2() { 42 42 $versions = ActionScheduler_Versions::instance(); 43 $versions->register( '3.5. 1', 'action_scheduler_initialize_3_dot_5_dot_1' );43 $versions->register( '3.5.2', 'action_scheduler_initialize_3_dot_5_dot_2' ); 44 44 } 45 45 … … 47 47 * Initializes this version of Action Scheduler. 48 48 */ 49 function action_scheduler_initialize_3_dot_5_dot_ 1() {49 function action_scheduler_initialize_3_dot_5_dot_2() { 50 50 // A final safety check is required even here, because historic versions of Action Scheduler 51 51 // followed a different pattern (in some unusual cases, we could reach this point and the … … 59 59 // Support usage in themes - load this version if no plugin has loaded a version yet. 60 60 if ( did_action( 'plugins_loaded' ) && ! doing_action( 'plugins_loaded' ) && ! class_exists( 'ActionScheduler', false ) ) { 61 action_scheduler_initialize_3_dot_5_dot_ 1();61 action_scheduler_initialize_3_dot_5_dot_2(); 62 62 do_action( 'action_scheduler_pre_theme_init' ); 63 63 ActionScheduler_Versions::initialize_latest_version(); -
action-scheduler/trunk/changelog.txt
r2784104 r2786042 1 1 *** Changelog *** 2 3 = 3.5.2 - 2022-09-16 = 4 * Fix - erroneous 3.5.1 release. 2 5 3 6 = 3.5.1 - 2022-09-13 = -
action-scheduler/trunk/readme.txt
r2784104 r2786042 4 4 Requires at least: 5.2 5 5 Tested up to: 6.0 6 Stable tag: 3.5. 16 Stable tag: 3.5.2 7 7 License: GPLv3 8 8 Requires PHP: 5.6 … … 47 47 48 48 == Changelog == 49 50 = 3.5.2 - 2022-09-16 = 51 * Fix - erroneous 3.5.1 release. 49 52 50 53 = 3.5.1 - 2022-09-13 =
Note: See TracChangeset
for help on using the changeset viewer.