Changeset 2784104
- Timestamp:
- 09/13/2022 03:07:19 PM (3 years ago)
- Location:
- action-scheduler
- Files:
-
- 16 edited
- 1 copied
-
tags/3.5.1 (copied) (copied from action-scheduler/trunk)
-
tags/3.5.1/action-scheduler.php (modified) (1 diff)
-
tags/3.5.1/changelog.txt (modified) (1 diff)
-
tags/3.5.1/classes/schema/ActionScheduler_LoggerSchema.php (modified) (2 diffs)
-
tags/3.5.1/readme.txt (modified) (2 diffs)
-
tags/3.5.1/vendor/autoload.php (modified) (1 diff)
-
tags/3.5.1/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/3.5.1/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/3.5.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/action-scheduler.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/classes/schema/ActionScheduler_LoggerSchema.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
action-scheduler/tags/3.5.1/action-scheduler.php
r2775803 r2784104 6 6 * Author: Automattic 7 7 * Author URI: https://automattic.com/ 8 * Version: 3.5. 08 * Version: 3.5.1 9 9 * License: GPLv3 10 10 * -
action-scheduler/tags/3.5.1/changelog.txt
r2775805 r2784104 1 1 *** Changelog *** 2 3 = 3.5.1 - 2022-09-13 = 4 * Maintenance on A/S docs. 5 * fix: PHP 8.2 deprecated notice. 2 6 3 7 = 3.5.0 - 2022-08-25 = -
action-scheduler/tags/3.5.1/classes/schema/ActionScheduler_LoggerSchema.php
r2599552 r2784104 38 38 39 39 $default_date = ActionScheduler_StoreSchema::DEFAULT_DATE; 40 return "CREATE TABLE {$table_name}(40 return "CREATE TABLE $table_name ( 41 41 log_id bigint(20) unsigned NOT NULL auto_increment, 42 42 action_id bigint(20) unsigned NOT NULL, 43 43 message text NOT NULL, 44 log_date_gmt datetime NULL default ' ${default_date}',45 log_date_local datetime NULL default ' ${default_date}',44 log_date_gmt datetime NULL default '{$default_date}', 45 log_date_local datetime NULL default '{$default_date}', 46 46 PRIMARY KEY (log_id), 47 47 KEY action_id (action_id), … … 75 75 // phpcs:disable WordPress.DB.PreparedSQL.InterpolatedNotPrepared 76 76 $table_name = $wpdb->prefix . 'actionscheduler_logs'; 77 $table_list = $wpdb->get_col( "SHOW TABLES LIKE ' ${table_name}'" );77 $table_list = $wpdb->get_col( "SHOW TABLES LIKE '{$table_name}'" ); 78 78 $default_date = ActionScheduler_StoreSchema::DEFAULT_DATE; 79 79 80 80 if ( ! empty( $table_list ) ) { 81 81 $query = " 82 ALTER TABLE ${table_name}83 MODIFY COLUMN log_date_gmt datetime NULL default ' ${default_date}',84 MODIFY COLUMN log_date_local datetime NULL default ' ${default_date}'82 ALTER TABLE {$table_name} 83 MODIFY COLUMN log_date_gmt datetime NULL default '{$default_date}', 84 MODIFY COLUMN log_date_local datetime NULL default '{$default_date}' 85 85 "; 86 86 $wpdb->query( $query ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -
action-scheduler/tags/3.5.1/readme.txt
r2775805 r2784104 4 4 Requires at least: 5.2 5 5 Tested up to: 6.0 6 Stable tag: 3.5. 06 Stable tag: 3.5.1 7 7 License: GPLv3 8 8 Requires PHP: 5.6 … … 47 47 48 48 == Changelog == 49 50 = 3.5.1 - 2022-09-13 = 51 * Maintenance on A/S docs. 52 * fix: PHP 8.2 deprecated notice. 49 53 50 54 = 3.5.0 - 2022-08-25 = -
action-scheduler/tags/3.5.1/vendor/autoload.php
r2775803 r2784104 10 10 require_once __DIR__ . '/composer/autoload_real.php'; 11 11 12 return ComposerAutoloaderInit 860a60f0608445157cd29014e65f5433::getLoader();12 return ComposerAutoloaderInitb2336c94567580d8eb97604f96542a22::getLoader(); -
action-scheduler/tags/3.5.1/vendor/composer/autoload_real.php
r2775803 r2784104 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 860a60f0608445157cd29014e65f54335 class ComposerAutoloaderInitb2336c94567580d8eb97604f96542a22 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 860a60f0608445157cd29014e65f5433', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitb2336c94567580d8eb97604f96542a22', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 860a60f0608445157cd29014e65f5433', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitb2336c94567580d8eb97604f96542a22', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 860a60f0608445157cd29014e65f5433::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitb2336c94567580d8eb97604f96542a22::getInitializer($loader)); 31 31 32 32 $loader->register(true); -
action-scheduler/tags/3.5.1/vendor/composer/autoload_static.php
r2775803 r2784104 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 860a60f0608445157cd29014e65f54337 class ComposerStaticInitb2336c94567580d8eb97604f96542a22 8 8 { 9 9 public static $classMap = array ( … … 14 14 { 15 15 return \Closure::bind(function () use ($loader) { 16 $loader->classMap = ComposerStaticInit 860a60f0608445157cd29014e65f5433::$classMap;16 $loader->classMap = ComposerStaticInitb2336c94567580d8eb97604f96542a22::$classMap; 17 17 18 18 }, null, ClassLoader::class); -
action-scheduler/tags/3.5.1/vendor/composer/installed.php
r2775803 r2784104 4 4 'pretty_version' => 'dev-trunk', 5 5 'version' => 'dev-trunk', 6 'reference' => '9 47691c51656a28730a41155e966787921b9d7a0',6 'reference' => '98c44ef39641843af53b60111c9c119f14549e2d', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-trunk', 15 15 'version' => 'dev-trunk', 16 'reference' => '9 47691c51656a28730a41155e966787921b9d7a0',16 'reference' => '98c44ef39641843af53b60111c9c119f14549e2d', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
action-scheduler/trunk/action-scheduler.php
r2775803 r2784104 6 6 * Author: Automattic 7 7 * Author URI: https://automattic.com/ 8 * Version: 3.5. 08 * Version: 3.5.1 9 9 * License: GPLv3 10 10 * -
action-scheduler/trunk/changelog.txt
r2775805 r2784104 1 1 *** Changelog *** 2 3 = 3.5.1 - 2022-09-13 = 4 * Maintenance on A/S docs. 5 * fix: PHP 8.2 deprecated notice. 2 6 3 7 = 3.5.0 - 2022-08-25 = -
action-scheduler/trunk/classes/schema/ActionScheduler_LoggerSchema.php
r2599552 r2784104 38 38 39 39 $default_date = ActionScheduler_StoreSchema::DEFAULT_DATE; 40 return "CREATE TABLE {$table_name}(40 return "CREATE TABLE $table_name ( 41 41 log_id bigint(20) unsigned NOT NULL auto_increment, 42 42 action_id bigint(20) unsigned NOT NULL, 43 43 message text NOT NULL, 44 log_date_gmt datetime NULL default ' ${default_date}',45 log_date_local datetime NULL default ' ${default_date}',44 log_date_gmt datetime NULL default '{$default_date}', 45 log_date_local datetime NULL default '{$default_date}', 46 46 PRIMARY KEY (log_id), 47 47 KEY action_id (action_id), … … 75 75 // phpcs:disable WordPress.DB.PreparedSQL.InterpolatedNotPrepared 76 76 $table_name = $wpdb->prefix . 'actionscheduler_logs'; 77 $table_list = $wpdb->get_col( "SHOW TABLES LIKE ' ${table_name}'" );77 $table_list = $wpdb->get_col( "SHOW TABLES LIKE '{$table_name}'" ); 78 78 $default_date = ActionScheduler_StoreSchema::DEFAULT_DATE; 79 79 80 80 if ( ! empty( $table_list ) ) { 81 81 $query = " 82 ALTER TABLE ${table_name}83 MODIFY COLUMN log_date_gmt datetime NULL default ' ${default_date}',84 MODIFY COLUMN log_date_local datetime NULL default ' ${default_date}'82 ALTER TABLE {$table_name} 83 MODIFY COLUMN log_date_gmt datetime NULL default '{$default_date}', 84 MODIFY COLUMN log_date_local datetime NULL default '{$default_date}' 85 85 "; 86 86 $wpdb->query( $query ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -
action-scheduler/trunk/readme.txt
r2775805 r2784104 4 4 Requires at least: 5.2 5 5 Tested up to: 6.0 6 Stable tag: 3.5. 06 Stable tag: 3.5.1 7 7 License: GPLv3 8 8 Requires PHP: 5.6 … … 47 47 48 48 == Changelog == 49 50 = 3.5.1 - 2022-09-13 = 51 * Maintenance on A/S docs. 52 * fix: PHP 8.2 deprecated notice. 49 53 50 54 = 3.5.0 - 2022-08-25 = -
action-scheduler/trunk/vendor/autoload.php
r2775803 r2784104 10 10 require_once __DIR__ . '/composer/autoload_real.php'; 11 11 12 return ComposerAutoloaderInit 860a60f0608445157cd29014e65f5433::getLoader();12 return ComposerAutoloaderInitb2336c94567580d8eb97604f96542a22::getLoader(); -
action-scheduler/trunk/vendor/composer/autoload_real.php
r2775803 r2784104 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 860a60f0608445157cd29014e65f54335 class ComposerAutoloaderInitb2336c94567580d8eb97604f96542a22 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 860a60f0608445157cd29014e65f5433', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitb2336c94567580d8eb97604f96542a22', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 860a60f0608445157cd29014e65f5433', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitb2336c94567580d8eb97604f96542a22', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 860a60f0608445157cd29014e65f5433::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitb2336c94567580d8eb97604f96542a22::getInitializer($loader)); 31 31 32 32 $loader->register(true); -
action-scheduler/trunk/vendor/composer/autoload_static.php
r2775803 r2784104 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 860a60f0608445157cd29014e65f54337 class ComposerStaticInitb2336c94567580d8eb97604f96542a22 8 8 { 9 9 public static $classMap = array ( … … 14 14 { 15 15 return \Closure::bind(function () use ($loader) { 16 $loader->classMap = ComposerStaticInit 860a60f0608445157cd29014e65f5433::$classMap;16 $loader->classMap = ComposerStaticInitb2336c94567580d8eb97604f96542a22::$classMap; 17 17 18 18 }, null, ClassLoader::class); -
action-scheduler/trunk/vendor/composer/installed.php
r2775803 r2784104 4 4 'pretty_version' => 'dev-trunk', 5 5 'version' => 'dev-trunk', 6 'reference' => '9 47691c51656a28730a41155e966787921b9d7a0',6 'reference' => '98c44ef39641843af53b60111c9c119f14549e2d', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-trunk', 15 15 'version' => 'dev-trunk', 16 'reference' => '9 47691c51656a28730a41155e966787921b9d7a0',16 'reference' => '98c44ef39641843af53b60111c9c119f14549e2d', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.