Plugin Directory

Changeset 3027691


Ignore:
Timestamp:
01/27/2024 07:29:31 PM (2 years ago)
Author:
Blighty
Message:

1.1.4

Location:
blighty-pluginator/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • blighty-pluginator/trunk/admin-settings.php

    r1574764 r3027691  
    1717along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1818
    19 v1.1.3
     19v1.1.4
    2020
    2121**/
     
    119119                                $i = 0;
    120120                                foreach ($allPlugins as $key => $value) {
    121                                     if ($ignore[$key] == '1') {
     121                                    if (isset($ignore[$key]) && $ignore[$key] == '1') {
    122122                                        $checked = ' checked';
    123123                                    } else {
  • blighty-pluginator/trunk/blighty-pluginator.php

    r1574764 r3027691  
    44 * Plugin URI: http://blighty.net/wordpress-blighty-pluginator-plugin/
    55 * Description: Checks a WordPress installation for out of date plugins and sends an email to the admin.
    6  * (C) 2016-2017 Chris Murfin (Blighty)
    7  * Version: 1.1.3
     6 * (C) 2016-2024 Chris Murfin (Blighty)
     7 * Version: 1.1.4
    88 * Author: Blighty
    99 * Author URI: http://blighty.net
     
    3333
    3434define('BPL_PLUGIN_NAME', 'Blighty Pluginator');
    35 define('BPL_PLUGIN_VERSION', '1.1.3');
     35define('BPL_PLUGIN_VERSION', '1.1.4');
    3636define('BPL_PLUGIN_URL', 'http://blighty.net');
    3737
     
    156156    $updatePlugins = get_site_transient('update_plugins');
    157157
    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";
    159159
    160160    if (!empty($updatePlugins)) {
  • blighty-pluginator/trunk/readme.txt

    r1679871 r3027691  
    33Tags: plugin, development, wordpress, updates, maintenance
    44Donate link: http://blighty.net/go/blighty-pluginator-plugin-paypal-donation/
    5 Requires at least: 4.1.1
    6 Tested up to: 4.8
    7 Stable tag: 1.1.3
     5Requires at least: 6.4.2
     6Tested up to: 6.4.2
     7Stable tag: 1.1.4
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1515
    1616== Installation ==
    17 - Install and optionally set a notification email address.
     17- Install and optionally set a notification email address via the settings.
    1818- Optionally enable the "snapshot" feature. This monitors plugins and reports by email when they are activated or deactivated.
    1919- That's it.
    2020
    2121== Changelog ==
     22
     23= Version 1.1.4 - January 27th, 2024 =
     24
     25* Bug fixes and compatability with PHP 8.*
    2226
    2327= Version 1.1.3 - January 14th, 2017 =
Note: See TracChangeset for help on using the changeset viewer.