Changeset 2808278
- Timestamp:
- 10/31/2022 10:13:36 PM (3 years ago)
- Location:
- wp-cron-pixie
- Files:
-
- 10 added
- 1 deleted
- 3 edited
-
tags/1.4.2 (added)
-
tags/1.4.2/README.txt (added)
-
tags/1.4.2/css (added)
-
tags/1.4.2/css/main.css (added)
-
tags/1.4.2/includes (added)
-
tags/1.4.2/includes/class-cron-pixie.php (added)
-
tags/1.4.2/js (added)
-
tags/1.4.2/js/CronPixie.js (added)
-
tags/1.4.2/js/main.js (added)
-
tags/1.4.2/wp-cron-pixie.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/elm (deleted)
-
trunk/includes/class-cron-pixie.php (modified) (1 diff)
-
trunk/wp-cron-pixie.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-cron-pixie/trunk/README.txt
r2725626 r2808278 1 1 === Plugin Name === 2 2 Contributors: ianmjones 3 Donate link: https:// www.ianmjones.com/3 Donate link: https://ianmjones.com/ 4 4 Tags: cron, wp-cron, dashboard, admin, widget 5 Requires at least: 4.96 Tested up to: 6. 05 Requires at least: 5.3 6 Tested up to: 6.1 7 7 Stable tag: trunk 8 Requires PHP: 5.6 8 9 License: GPLv2 or later 9 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 45 46 == Changelog == 46 47 48 = 1.4.2 = 49 * Fixed dashboard widget trying to run at network level in a multisite. 50 * Tested with WP 6.1 51 47 52 = 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. 49 54 * Minor updates to framework and build tools. 50 55 * Tested with WP 5.4 -
wp-cron-pixie/trunk/includes/class-cron-pixie.php
r2263440 r2808278 30 30 31 31 $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 } 32 37 33 38 // Usage of the plugin is restricted to Administrators. -
wp-cron-pixie/trunk/wp-cron-pixie.php
r2263440 r2808278 9 9 * Plugin URI: https://github.com/ianmjones/wp-cron-pixie 10 10 * Description: A little dashboard widget to manage the WordPress cron. 11 * Version: 1.4. 111 * Version: 1.4.2 12 12 * Author: Ian M. Jones 13 * Author URI: https:// www.ianmjones.com/13 * Author URI: https://ianmjones.com/ 14 14 * License: GPL-2.0+ 15 15 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt 16 16 * Text Domain: wp-cron-pixie 17 17 * Domain Path: /languages 18 * Network: True18 * Network: False 19 19 */ 20 20 … … 34 34 'name' => 'WP Cron Pixie', 35 35 'file' => __FILE__, 36 'version' => '1.4. 1',36 'version' => '1.4.2', 37 37 ); 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.