Changeset 3338298
- Timestamp:
- 08/02/2025 05:37:36 PM (8 months ago)
- Location:
- wp-cron-pixie
- Files:
-
- 10 added
- 3 edited
-
tags/1.6.1 (added)
-
tags/1.6.1/README.txt (added)
-
tags/1.6.1/css (added)
-
tags/1.6.1/css/main.css (added)
-
tags/1.6.1/includes (added)
-
tags/1.6.1/includes/class-cron-pixie.php (added)
-
tags/1.6.1/js (added)
-
tags/1.6.1/js/main.js (added)
-
tags/1.6.1/js/ui.js (added)
-
tags/1.6.1/wp-cron-pixie.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-cron-pixie.php (modified) (3 diffs)
-
trunk/wp-cron-pixie.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-cron-pixie/trunk/README.txt
r3338263 r3338298 5 5 Requires at least: 6.0 6 6 Tested up to: 6.8 7 Stable tag: 1.6. 07 Stable tag: 1.6.1 8 8 Requires PHP: 7.4 9 9 License: MIT … … 49 49 50 50 == Changelog == 51 52 = 1.6.1 = 53 * Example events setting is now saved for each subsite in a multisite install. 51 54 52 55 = 1.6.0 = -
wp-cron-pixie/trunk/includes/class-cron-pixie.php
r3338263 r3338298 571 571 */ 572 572 private function update_example_events_setting( bool $example_events ): bool|WP_Error { 573 $settings = get_ site_option( self::SETTINGS_KEY );573 $settings = get_option( self::SETTINGS_KEY ); 574 574 575 575 if ( is_array( $settings ) ) { … … 579 579 } 580 580 581 if ( ! update_ site_option( self::SETTINGS_KEY, $settings ) ) {581 if ( ! update_option( self::SETTINGS_KEY, $settings ) ) { 582 582 return new WP_Error( 583 583 'cron-pixie-update-example-events-setting-update-settings', … … 785 785 $value = false; 786 786 787 $settings = get_ site_option( self::SETTINGS_KEY );787 $settings = get_option( self::SETTINGS_KEY ); 788 788 789 789 if ( ! empty( $settings ) && is_array( $settings ) && isset( $settings[ $key ] ) ) { -
wp-cron-pixie/trunk/wp-cron-pixie.php
r3338263 r3338298 10 10 * Plugin URI: https://github.com/ianmjones/wp-cron-pixie 11 11 * Description: A little dashboard widget to manage the WordPress cron. 12 * Version: 1.6. 012 * Version: 1.6.1 13 13 * Author: Ian M. Jones 14 14 * Author URI: https://ianmjones.com/ … … 37 37 'name' => 'WP Cron Pixie', 38 38 'file' => __FILE__, 39 'version' => '1.6. 0',39 'version' => '1.6.1', 40 40 ); 41 41 }
Note: See TracChangeset
for help on using the changeset viewer.