Changeset 3027691
- Timestamp:
- 01/27/2024 07:29:31 PM (2 years ago)
- Location:
- blighty-pluginator/trunk
- Files:
-
- 3 edited
-
admin-settings.php (modified) (2 diffs)
-
blighty-pluginator.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blighty-pluginator/trunk/admin-settings.php
r1574764 r3027691 17 17 along with this program. If not, see <http://www.gnu.org/licenses/>. 18 18 19 v1.1. 319 v1.1.4 20 20 21 21 **/ … … 119 119 $i = 0; 120 120 foreach ($allPlugins as $key => $value) { 121 if ( $ignore[$key] == '1') {121 if (isset($ignore[$key]) && $ignore[$key] == '1') { 122 122 $checked = ' checked'; 123 123 } else { -
blighty-pluginator/trunk/blighty-pluginator.php
r1574764 r3027691 4 4 * Plugin URI: http://blighty.net/wordpress-blighty-pluginator-plugin/ 5 5 * Description: Checks a WordPress installation for out of date plugins and sends an email to the admin. 6 * (C) 2016-20 17Chris Murfin (Blighty)7 * Version: 1.1. 36 * (C) 2016-2024 Chris Murfin (Blighty) 7 * Version: 1.1.4 8 8 * Author: Blighty 9 9 * Author URI: http://blighty.net … … 33 33 34 34 define('BPL_PLUGIN_NAME', 'Blighty Pluginator'); 35 define('BPL_PLUGIN_VERSION', '1.1. 3');35 define('BPL_PLUGIN_VERSION', '1.1.4'); 36 36 define('BPL_PLUGIN_URL', 'http://blighty.net'); 37 37 … … 156 156 $updatePlugins = get_site_transient('update_plugins'); 157 157 158 $body2 .= "The following WordPress hosted plugins are reporting there are updates available:\r\n\r\n";158 $body2 = "The following WordPress hosted plugins are reporting there are updates available:\r\n\r\n"; 159 159 160 160 if (!empty($updatePlugins)) { -
blighty-pluginator/trunk/readme.txt
r1679871 r3027691 3 3 Tags: plugin, development, wordpress, updates, maintenance 4 4 Donate link: http://blighty.net/go/blighty-pluginator-plugin-paypal-donation/ 5 Requires at least: 4.1.16 Tested up to: 4.87 Stable tag: 1.1. 35 Requires at least: 6.4.2 6 Tested up to: 6.4.2 7 Stable tag: 1.1.4 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 15 15 16 16 == Installation == 17 - Install and optionally set a notification email address .17 - Install and optionally set a notification email address via the settings. 18 18 - Optionally enable the "snapshot" feature. This monitors plugins and reports by email when they are activated or deactivated. 19 19 - That's it. 20 20 21 21 == Changelog == 22 23 = Version 1.1.4 - January 27th, 2024 = 24 25 * Bug fixes and compatability with PHP 8.* 22 26 23 27 = Version 1.1.3 - January 14th, 2017 =
Note: See TracChangeset
for help on using the changeset viewer.