Plugin Directory

Changeset 3338298


Ignore:
Timestamp:
08/02/2025 05:37:36 PM (8 months ago)
Author:
ianmjones
Message:

Deploy version 1.6.1

Location:
wp-cron-pixie
Files:
10 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-cron-pixie/trunk/README.txt

    r3338263 r3338298  
    55Requires at least: 6.0
    66Tested up to: 6.8
    7 Stable tag: 1.6.0
     7Stable tag: 1.6.1
    88Requires PHP: 7.4
    99License: MIT
     
    4949
    5050== Changelog ==
     51
     52= 1.6.1 =
     53* Example events setting is now saved for each subsite in a multisite install.
    5154
    5255= 1.6.0 =
  • wp-cron-pixie/trunk/includes/class-cron-pixie.php

    r3338263 r3338298  
    571571     */
    572572    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 );
    574574
    575575        if ( is_array( $settings ) ) {
     
    579579        }
    580580
    581         if ( ! update_site_option( self::SETTINGS_KEY, $settings ) ) {
     581        if ( ! update_option( self::SETTINGS_KEY, $settings ) ) {
    582582            return new WP_Error(
    583583                'cron-pixie-update-example-events-setting-update-settings',
     
    785785        $value = false;
    786786
    787         $settings = get_site_option( self::SETTINGS_KEY );
     787        $settings = get_option( self::SETTINGS_KEY );
    788788
    789789        if ( ! empty( $settings ) && is_array( $settings ) && isset( $settings[ $key ] ) ) {
  • wp-cron-pixie/trunk/wp-cron-pixie.php

    r3338263 r3338298  
    1010 * Plugin URI:        https://github.com/ianmjones/wp-cron-pixie
    1111 * Description:       A little dashboard widget to manage the WordPress cron.
    12  * Version:           1.6.0
     12 * Version:           1.6.1
    1313 * Author:            Ian M. Jones
    1414 * Author URI:        https://ianmjones.com/
     
    3737        'name'    => 'WP Cron Pixie',
    3838        'file'    => __FILE__,
    39         'version' => '1.6.0',
     39        'version' => '1.6.1',
    4040    );
    4141}
Note: See TracChangeset for help on using the changeset viewer.