Changeset 3401857
- Timestamp:
- 11/24/2025 12:50:18 PM (7 weeks ago)
- Location:
- newsletter
- Files:
-
- 10 edited
- 1 copied
-
tags/9.0.8 (copied) (copied from newsletter/trunk)
-
tags/9.0.8/classes/NewsletterEngine.php (modified) (2 diffs)
-
tags/9.0.8/emails/blocks/heading/block.php (modified) (1 diff)
-
tags/9.0.8/includes/controls.php (modified) (1 diff)
-
tags/9.0.8/plugin.php (modified) (2 diffs)
-
tags/9.0.8/readme.txt (modified) (2 diffs)
-
trunk/classes/NewsletterEngine.php (modified) (2 diffs)
-
trunk/emails/blocks/heading/block.php (modified) (1 diff)
-
trunk/includes/controls.php (modified) (1 diff)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
newsletter/tags/9.0.8/classes/NewsletterEngine.php
r3386237 r3401857 94 94 95 95 if ($this->max_emails <= 0) { 96 $this->logger-> info('No more capacity');96 $this->logger->error('No more capacity'); 97 97 return false; 98 98 } … … 213 213 214 214 if (!$supplied_users && !$test && $this->time_exceeded()) { 215 $this->logger->error('Time excedeed'); 215 216 $result = false; 216 217 break; -
newsletter/tags/9.0.8/emails/blocks/heading/block.php
r3379215 r3401857 37 37 letter-spacing: normal; 38 38 } 39 .title-td { 40 text-align: <?php echo esc_html($options['align']); ?>; 41 } 39 42 </style> 40 43 41 44 <table border="0" cellspacing="0" cellpadding="0" width="100%" role="presentation"> 42 45 <tr> 43 <td align="<?php echo esc_attr($options['align']) ?>" valign="middle" dir="<?php echo $dir ?>">46 <td align="<?php echo esc_attr($options['align']) ?>" valign="middle" dir="<?php echo $dir; ?>" inline-class="title-td"> 44 47 <div inline-class="title" role="heading" aria-level="1"><?php echo wp_kses_post($options['text']); ?></div> 45 48 </td> -
newsletter/tags/9.0.8/includes/controls.php
r3379215 r3401857 1039 1039 1040 1040 function hidden_encoded($name) { 1041 $value = $this->get_value($name );1041 $value = $this->get_value($name, ''); 1042 1042 $value = base64_encode(rawurlencode($value)); 1043 1043 echo '<input name="options[', esc_attr($name), ']" id="options-', esc_attr($name), '" type="hidden" value="', esc_attr($value), '">'; -
newsletter/tags/9.0.8/plugin.php
r3386848 r3401857 5 5 Plugin URI: https://www.thenewsletterplugin.com 6 6 Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong> 7 Version: 9.0. 77 Version: 9.0.8 8 8 Author: Stefano Lissa & The Newsletter Team 9 9 Author URI: https://www.thenewsletterplugin.com … … 31 31 */ 32 32 33 define('NEWSLETTER_VERSION', '9.0. 7');33 define('NEWSLETTER_VERSION', '9.0.8'); 34 34 35 35 global $wpdb, $newsletter; -
newsletter/tags/9.0.8/readme.txt
r3386848 r3401857 2 2 Tags: newsletter, subscription, email marketing, welcome email, signup forms 3 3 Tested up to: 6.8.3 4 Stable tag: 9.0. 74 Stable tag: 9.0.8 5 5 Contributors: satollo,webagile 6 6 License: GPLv2 or later … … 130 130 == Changelog == 131 131 132 = 9.0.8 = 133 134 * Fixed PHP warning 135 * Fixed heasding block with HTML filters removing tabel attributes 136 132 137 = 9.0.7 = 133 138 -
newsletter/trunk/classes/NewsletterEngine.php
r3386237 r3401857 94 94 95 95 if ($this->max_emails <= 0) { 96 $this->logger-> info('No more capacity');96 $this->logger->error('No more capacity'); 97 97 return false; 98 98 } … … 213 213 214 214 if (!$supplied_users && !$test && $this->time_exceeded()) { 215 $this->logger->error('Time excedeed'); 215 216 $result = false; 216 217 break; -
newsletter/trunk/emails/blocks/heading/block.php
r3379215 r3401857 37 37 letter-spacing: normal; 38 38 } 39 .title-td { 40 text-align: <?php echo esc_html($options['align']); ?>; 41 } 39 42 </style> 40 43 41 44 <table border="0" cellspacing="0" cellpadding="0" width="100%" role="presentation"> 42 45 <tr> 43 <td align="<?php echo esc_attr($options['align']) ?>" valign="middle" dir="<?php echo $dir ?>">46 <td align="<?php echo esc_attr($options['align']) ?>" valign="middle" dir="<?php echo $dir; ?>" inline-class="title-td"> 44 47 <div inline-class="title" role="heading" aria-level="1"><?php echo wp_kses_post($options['text']); ?></div> 45 48 </td> -
newsletter/trunk/includes/controls.php
r3379215 r3401857 1039 1039 1040 1040 function hidden_encoded($name) { 1041 $value = $this->get_value($name );1041 $value = $this->get_value($name, ''); 1042 1042 $value = base64_encode(rawurlencode($value)); 1043 1043 echo '<input name="options[', esc_attr($name), ']" id="options-', esc_attr($name), '" type="hidden" value="', esc_attr($value), '">'; -
newsletter/trunk/plugin.php
r3386848 r3401857 5 5 Plugin URI: https://www.thenewsletterplugin.com 6 6 Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong> 7 Version: 9.0. 77 Version: 9.0.8 8 8 Author: Stefano Lissa & The Newsletter Team 9 9 Author URI: https://www.thenewsletterplugin.com … … 31 31 */ 32 32 33 define('NEWSLETTER_VERSION', '9.0. 7');33 define('NEWSLETTER_VERSION', '9.0.8'); 34 34 35 35 global $wpdb, $newsletter; -
newsletter/trunk/readme.txt
r3386848 r3401857 2 2 Tags: newsletter, subscription, email marketing, welcome email, signup forms 3 3 Tested up to: 6.8.3 4 Stable tag: 9.0. 74 Stable tag: 9.0.8 5 5 Contributors: satollo,webagile 6 6 License: GPLv2 or later … … 130 130 == Changelog == 131 131 132 = 9.0.8 = 133 134 * Fixed PHP warning 135 * Fixed heasding block with HTML filters removing tabel attributes 136 132 137 = 9.0.7 = 133 138
Note: See TracChangeset
for help on using the changeset viewer.