Plugin Directory

Changeset 2808278


Ignore:
Timestamp:
10/31/2022 10:13:36 PM (3 years ago)
Author:
ianmjones
Message:

Deploy version 1.4.2

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

Legend:

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

    r2725626 r2808278  
    11=== Plugin Name ===
    22Contributors: ianmjones
    3 Donate link: https://www.ianmjones.com/
     3Donate link: https://ianmjones.com/
    44Tags: cron, wp-cron, dashboard, admin, widget
    5 Requires at least: 4.9
    6 Tested up to: 6.0
     5Requires at least: 5.3
     6Tested up to: 6.1
    77Stable tag: trunk
     8Requires PHP: 5.6
    89License: GPLv2 or later
    910License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4546== Changelog ==
    4647
     48= 1.4.2 =
     49* Fixed dashboard widget trying to run at network level in a multisite.
     50* Tested with WP 6.1
     51
    4752= 1.4.1 =
    48 * Fixed wrong data refreshing into non-primary subsite of directory multisite
     53* Fixed wrong data refreshing into non-primary subsite of directory multisite.
    4954* Minor updates to framework and build tools.
    5055* Tested with WP 5.4
  • wp-cron-pixie/trunk/includes/class-cron-pixie.php

    r2263440 r2808278  
    3030
    3131        $this->plugin_meta = $plugin_meta;
     32
     33        // Using the plugin in the network admin dashboard makes no sense.
     34        if ( is_network_admin() ) {
     35            return;
     36        }
    3237
    3338        // Usage of the plugin is restricted to Administrators.
  • wp-cron-pixie/trunk/wp-cron-pixie.php

    r2263440 r2808278  
    99 * Plugin URI:        https://github.com/ianmjones/wp-cron-pixie
    1010 * Description:       A little dashboard widget to manage the WordPress cron.
    11  * Version:           1.4.1
     11 * Version:           1.4.2
    1212 * Author:            Ian M. Jones
    13  * Author URI:        https://www.ianmjones.com/
     13 * Author URI:        https://ianmjones.com/
    1414 * License:           GPL-2.0+
    1515 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
    1616 * Text Domain:       wp-cron-pixie
    1717 * Domain Path:       /languages
    18  * Network:           True
     18 * Network:           False
    1919 */
    2020
     
    3434        'name'    => 'WP Cron Pixie',
    3535        'file'    => __FILE__,
    36         'version' => '1.4.1',
     36        'version' => '1.4.2',
    3737    );
    3838}
Note: See TracChangeset for help on using the changeset viewer.