Changeset 3380756
- Timestamp:
- 10/19/2025 10:11:47 AM (5 months ago)
- Location:
- wb-mail-logger
- Files:
-
- 27 added
- 4 edited
-
tags/1.0.9 (added)
-
tags/1.0.9/admin (added)
-
tags/1.0.9/admin/class-wb-mail-logger-admin.php (added)
-
tags/1.0.9/admin/css (added)
-
tags/1.0.9/admin/css/wb-mail-logger-admin.css (added)
-
tags/1.0.9/admin/images (added)
-
tags/1.0.9/admin/images/loading.gif (added)
-
tags/1.0.9/admin/index.php (added)
-
tags/1.0.9/admin/js (added)
-
tags/1.0.9/admin/js/wb-mail-logger-admin.js (added)
-
tags/1.0.9/admin/partials (added)
-
tags/1.0.9/admin/partials/_detail-view.php (added)
-
tags/1.0.9/admin/partials/wb-mail-logger-admin-display.php (added)
-
tags/1.0.9/includes (added)
-
tags/1.0.9/includes/class-wb-mail-logger-activator.php (added)
-
tags/1.0.9/includes/class-wb-mail-logger-deactivator.php (added)
-
tags/1.0.9/includes/class-wb-mail-logger-i18n.php (added)
-
tags/1.0.9/includes/class-wb-mail-logger-loader.php (added)
-
tags/1.0.9/includes/class-wb-mail-logger.php (added)
-
tags/1.0.9/includes/index.php (added)
-
tags/1.0.9/index.php (added)
-
tags/1.0.9/languages (added)
-
tags/1.0.9/languages/wb-mail-logger.pot (added)
-
tags/1.0.9/license.txt (added)
-
tags/1.0.9/readme.txt (added)
-
tags/1.0.9/uninstall.php (added)
-
tags/1.0.9/wb-mail-logger.php (added)
-
trunk/admin/class-wb-mail-logger-admin.php (modified) (2 diffs)
-
trunk/includes/class-wb-mail-logger.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wb-mail-logger.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wb-mail-logger/trunk/admin/class-wb-mail-logger-admin.php
r3380750 r3380756 530 530 $bcc = array(); 531 531 532 // Normalize to array. 532 // Decode JSON if needed. 533 if ( is_string( $headers ) && (substr(trim($headers), 0, 1) === '[' || substr(trim($headers),0,1)==='{') ) { 534 $decoded = json_decode( $headers, true ); 535 if ( is_array( $decoded ) ) { 536 $headers = $decoded; 537 } 538 } 539 540 // Normalize to array if it's a string. 533 541 if ( ! is_array( $headers ) ) { 534 542 $headers = preg_split( '/\r\n|\r|\n/', trim( $headers ) ); … … 548 556 } 549 557 550 // Remove duplicates and empty values 558 // Remove duplicates and empty values. 551 559 $cc = array_values( array_unique( array_filter( $cc ) ) ); 552 560 $bcc = array_values( array_unique( array_filter( $bcc ) ) ); -
wb-mail-logger/trunk/includes/class-wb-mail-logger.php
r3380750 r3380756 73 73 $this->version = WB_MAIL_LOGGER_VERSION; 74 74 } else { 75 $this->version = '1.0. 8';75 $this->version = '1.0.9'; 76 76 } 77 77 $this->plugin_name = 'wb-mail-logger'; -
wb-mail-logger/trunk/readme.txt
r3380750 r3380756 6 6 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 1.0. 88 Stable tag: 1.0.9 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 = 1.0.9 = 44 * [Fix] Resolved an issue where CC and BCC email addresses were not extracted from certain headers. 45 43 46 = 1.0.8 = 44 47 * Added support to display CC and BCC email addresses on the email detail page. … … 73 76 == Upgrade Notice == 74 77 75 = 1.0. 8=76 * Added support to display CC and BCC email addresses on the email detail page.78 = 1.0.9 = 79 * [Fix] Resolved an issue where CC and BCC email addresses were not extracted from certain headers. -
wb-mail-logger/trunk/wb-mail-logger.php
r3380750 r3380756 11 11 * Plugin URI: https://wordpress.org/plugins/wb-mail-logger/ 12 12 * Description: Wb Mail Logger will help to capture all WP emails. So this will help to debug email related issues. And also use full to store a copy of all sent emails. 13 * Version: 1.0. 813 * Version: 1.0.9 14 14 * Author: Web Builder 143 15 15 * Author URI: https://profiles.wordpress.org/webbuilder143/ … … 30 30 * Rename this for your plugin and update it as you release new versions. 31 31 */ 32 define('WB_MAIL_LOGGER_VERSION', '1.0. 8');32 define('WB_MAIL_LOGGER_VERSION', '1.0.9'); 33 33 define('WB_MAIL_LOGGER_SETTINGS', 'WB_MAIL_LOGGER_SETTINGS'); 34 34
Note: See TracChangeset
for help on using the changeset viewer.