Plugin Directory

Changeset 3061375


Ignore:
Timestamp:
03/29/2024 11:46:59 PM (2 years ago)
Author:
ehops32
Message:

1.3.1

  • Bug fix for email log errors
Location:
sackson-web-data/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • sackson-web-data/trunk/README.txt

    r3061369 r3061375  
    55Requires at least: 3.0.1
    66Tested up to: 6.0
    7 Stable tag: 1.3.0
     7Stable tag: 1.3.1
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    5151== Changelog ==
    5252
     53= 1.3.1 =
     54* Bug fix for email log errors
     55
    5356= 1.3.0 =
    54 * Gives an option to disable various email types like for plugin auto updates, theme auto updates, core auto updates
     57* Gives an option to disable various email types like for theme/plugin auto updates
    5558* Gather email log data so we can alert you to any email errors your site is having.
    5659
  • sackson-web-data/trunk/includes/class-sacksonweb-data-helper.php

    r3061369 r3061375  
    557557        $smtp_table = $wpdb->prefix . 'wpmailsmtp_debug_events';
    558558       
    559         $q = 'SELECT * FROM `' . $smtp_table . '` ORDER BY `created_at` DESC LIMIT 5;';
     559        $q = 'SELECT * FROM `' . $smtp_table . '` WHERE `created_at` >= ( NOW() - INTERVAL 3 DAY) ORDER BY `created_at` DESC LIMIT 5;';
    560560        $rows = $wpdb->get_results($q);
    561561        foreach ($rows as $row)
  • sackson-web-data/trunk/includes/class-sacksonweb-data-settings.php

    r3061369 r3061375  
    213213
    214214        $checked = in_array('theme_plugin_update_success', $value) ? 'checked' : '' ;
    215         echo '<input type="checkbox" name="sacksonweb_premium_settings_option_name[email_suppress_list][]" value="theme_plugin_update_success"' . $checked . '/> Supress Successful Theme and Plugin Update Emails <br />';
     215        echo '<input type="checkbox" name="sacksonweb_premium_settings_option_name[email_suppress_list][]" value="theme_plugin_update_success"' . $checked . '/> Suppress Successful Theme and Plugin Update Emails <br />';
    216216
    217217        $checked = in_array('theme_plugin_update_failed', $value) ? 'checked' : '' ;
    218         echo '<input type="checkbox" name="sacksonweb_premium_settings_option_name[email_suppress_list][]" value="theme_plugin_update_failed"' . $checked . '/> Supress Failed Theme and Plugin Update Emails (not recommended)<br />';
     218        echo '<input type="checkbox" name="sacksonweb_premium_settings_option_name[email_suppress_list][]" value="theme_plugin_update_failed"' . $checked . '/> Suppress Failed Theme and Plugin Update Emails <span style="color:red;">(not recommended)</span><br />';
     219
     220        // $checked = in_array('core_update_success', $value) ? 'checked' : '' ;
     221        // echo '<input type="checkbox" name="sacksonweb_premium_settings_option_name[email_suppress_list][]" value="core_update_success"' . $checked . '/> Suppress Successful Core Update Email <br />';
     222        // $checked = in_array('core_update_failed', $value) ? 'checked' : '' ;
     223        // echo '<input type="checkbox" name="sacksonweb_premium_settings_option_name[email_suppress_list][]" value="core_update_failed"' . $checked . '/> Suppress Failed Core Update Emails <span style="color:red;">(not recommended)</span><br />';
    219224
    220225    }
  • sackson-web-data/trunk/includes/class-sacksonweb-data.php

    r3061369 r3061375  
    129129            return $email;
    130130        }
     131
     132   
     133
     134
     135
    131136    }
    132137
  • sackson-web-data/trunk/sacksonweb-data.php

    r3061369 r3061375  
    1010 *
    1111 * @link              http://data.sacksonweb.com/author
    12  * @since             1.3.0
     12 * @since             1.3.1
    1313 * @package           Sacksonweb_Data
    1414 *
     
    1717 * Plugin URI:        http://data.sacksonweb.com
    1818 * Description:       A tool to monitor security issues, performance issues, and Wordpress settings that should be changed.
    19  * Version:           1.3.0
     19 * Version:           1.3.1
    2020 * Author:            Eric Thornton
    2121 * Author URI:        http://data.sacksonweb.com/author
     
    3535 *
    3636 */
    37 define( 'SACKSONWEB_DATA_VERSION', '1.3.0' );
     37define( 'SACKSONWEB_DATA_VERSION', '1.3.1' );
    3838
    3939/**
Note: See TracChangeset for help on using the changeset viewer.