Changeset 3061375
- Timestamp:
- 03/29/2024 11:46:59 PM (2 years ago)
- Location:
- sackson-web-data/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (2 diffs)
-
includes/class-sacksonweb-data-helper.php (modified) (1 diff)
-
includes/class-sacksonweb-data-settings.php (modified) (1 diff)
-
includes/class-sacksonweb-data.php (modified) (1 diff)
-
sacksonweb-data.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sackson-web-data/trunk/README.txt
r3061369 r3061375 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.0 7 Stable tag: 1.3. 07 Stable tag: 1.3.1 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 51 51 == Changelog == 52 52 53 = 1.3.1 = 54 * Bug fix for email log errors 55 53 56 = 1.3.0 = 54 * Gives an option to disable various email types like for plugin auto updates, theme auto updates, coreauto updates57 * Gives an option to disable various email types like for theme/plugin auto updates 55 58 * Gather email log data so we can alert you to any email errors your site is having. 56 59 -
sackson-web-data/trunk/includes/class-sacksonweb-data-helper.php
r3061369 r3061375 557 557 $smtp_table = $wpdb->prefix . 'wpmailsmtp_debug_events'; 558 558 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;'; 560 560 $rows = $wpdb->get_results($q); 561 561 foreach ($rows as $row) -
sackson-web-data/trunk/includes/class-sacksonweb-data-settings.php
r3061369 r3061375 213 213 214 214 $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 . '/> Sup ress 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 />'; 216 216 217 217 $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 />'; 219 224 220 225 } -
sackson-web-data/trunk/includes/class-sacksonweb-data.php
r3061369 r3061375 129 129 return $email; 130 130 } 131 132 133 134 135 131 136 } 132 137 -
sackson-web-data/trunk/sacksonweb-data.php
r3061369 r3061375 10 10 * 11 11 * @link http://data.sacksonweb.com/author 12 * @since 1.3. 012 * @since 1.3.1 13 13 * @package Sacksonweb_Data 14 14 * … … 17 17 * Plugin URI: http://data.sacksonweb.com 18 18 * Description: A tool to monitor security issues, performance issues, and Wordpress settings that should be changed. 19 * Version: 1.3. 019 * Version: 1.3.1 20 20 * Author: Eric Thornton 21 21 * Author URI: http://data.sacksonweb.com/author … … 35 35 * 36 36 */ 37 define( 'SACKSONWEB_DATA_VERSION', '1.3. 0' );37 define( 'SACKSONWEB_DATA_VERSION', '1.3.1' ); 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.