Plugin Directory

Changeset 3401857


Ignore:
Timestamp:
11/24/2025 12:50:18 PM (7 weeks ago)
Author:
satollo
Message:

Version 9.0.8

Location:
newsletter
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • newsletter/tags/9.0.8/classes/NewsletterEngine.php

    r3386237 r3401857  
    9494
    9595        if ($this->max_emails <= 0) {
    96             $this->logger->info('No more capacity');
     96            $this->logger->error('No more capacity');
    9797            return false;
    9898        }
     
    213213
    214214            if (!$supplied_users && !$test && $this->time_exceeded()) {
     215                $this->logger->error('Time excedeed');
    215216                $result = false;
    216217                break;
  • newsletter/tags/9.0.8/emails/blocks/heading/block.php

    r3379215 r3401857  
    3737        letter-spacing: normal;
    3838    }
     39    .title-td {
     40        text-align: <?php echo esc_html($options['align']); ?>;
     41    }
    3942</style>
    4043
    4144<table border="0" cellspacing="0" cellpadding="0" width="100%" role="presentation">
    4245    <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">
    4447            <div inline-class="title" role="heading" aria-level="1"><?php echo wp_kses_post($options['text']); ?></div>
    4548        </td>
  • newsletter/tags/9.0.8/includes/controls.php

    r3379215 r3401857  
    10391039
    10401040    function hidden_encoded($name) {
    1041         $value = $this->get_value($name);
     1041        $value = $this->get_value($name, '');
    10421042        $value = base64_encode(rawurlencode($value));
    10431043        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  
    55  Plugin URI: https://www.thenewsletterplugin.com
    66  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.7
     7  Version: 9.0.8
    88  Author: Stefano Lissa & The Newsletter Team
    99  Author URI: https://www.thenewsletterplugin.com
     
    3131 */
    3232
    33 define('NEWSLETTER_VERSION', '9.0.7');
     33define('NEWSLETTER_VERSION', '9.0.8');
    3434
    3535global $wpdb, $newsletter;
  • newsletter/tags/9.0.8/readme.txt

    r3386848 r3401857  
    22Tags: newsletter, subscription, email marketing, welcome email, signup forms
    33Tested up to: 6.8.3
    4 Stable tag: 9.0.7
     4Stable tag: 9.0.8
    55Contributors: satollo,webagile
    66License: GPLv2 or later
     
    130130== Changelog ==
    131131
     132= 9.0.8 =
     133
     134* Fixed PHP warning
     135* Fixed heasding block with HTML filters removing tabel attributes
     136
    132137= 9.0.7 =
    133138
  • newsletter/trunk/classes/NewsletterEngine.php

    r3386237 r3401857  
    9494
    9595        if ($this->max_emails <= 0) {
    96             $this->logger->info('No more capacity');
     96            $this->logger->error('No more capacity');
    9797            return false;
    9898        }
     
    213213
    214214            if (!$supplied_users && !$test && $this->time_exceeded()) {
     215                $this->logger->error('Time excedeed');
    215216                $result = false;
    216217                break;
  • newsletter/trunk/emails/blocks/heading/block.php

    r3379215 r3401857  
    3737        letter-spacing: normal;
    3838    }
     39    .title-td {
     40        text-align: <?php echo esc_html($options['align']); ?>;
     41    }
    3942</style>
    4043
    4144<table border="0" cellspacing="0" cellpadding="0" width="100%" role="presentation">
    4245    <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">
    4447            <div inline-class="title" role="heading" aria-level="1"><?php echo wp_kses_post($options['text']); ?></div>
    4548        </td>
  • newsletter/trunk/includes/controls.php

    r3379215 r3401857  
    10391039
    10401040    function hidden_encoded($name) {
    1041         $value = $this->get_value($name);
     1041        $value = $this->get_value($name, '');
    10421042        $value = base64_encode(rawurlencode($value));
    10431043        echo '<input name="options[', esc_attr($name), ']" id="options-', esc_attr($name), '" type="hidden" value="', esc_attr($value), '">';
  • newsletter/trunk/plugin.php

    r3386848 r3401857  
    55  Plugin URI: https://www.thenewsletterplugin.com
    66  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.7
     7  Version: 9.0.8
    88  Author: Stefano Lissa & The Newsletter Team
    99  Author URI: https://www.thenewsletterplugin.com
     
    3131 */
    3232
    33 define('NEWSLETTER_VERSION', '9.0.7');
     33define('NEWSLETTER_VERSION', '9.0.8');
    3434
    3535global $wpdb, $newsletter;
  • newsletter/trunk/readme.txt

    r3386848 r3401857  
    22Tags: newsletter, subscription, email marketing, welcome email, signup forms
    33Tested up to: 6.8.3
    4 Stable tag: 9.0.7
     4Stable tag: 9.0.8
    55Contributors: satollo,webagile
    66License: GPLv2 or later
     
    130130== Changelog ==
    131131
     132= 9.0.8 =
     133
     134* Fixed PHP warning
     135* Fixed heasding block with HTML filters removing tabel attributes
     136
    132137= 9.0.7 =
    133138
Note: See TracChangeset for help on using the changeset viewer.