Plugin Directory

Changeset 3266343


Ignore:
Timestamp:
04/03/2025 12:26:00 PM (11 months ago)
Author:
sendsmaily
Message:

Release 3.1.6, see readme.txt for the changelog.

Location:
smaily-for-wp
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smaily-for-wp/tags/3.1.6/public/partials/smaily-for-wp-public-basic.php

    r2873649 r3266343  
    1 <form id="smly" action="https://<?php echo $this->domain; ?>.sendsmaily.net/api/opt-in/" method="post">
     1<form id="smly" action="https://<?php echo esc_attr( $this->domain ); ?>.sendsmaily.net/api/opt-in/" method="post">
    22    <p class="error" style="padding:15px;background-color:#f2dede;margin:0 0 10px;display:<?php echo $this->form_has_response ? 'block' : 'none'; ?>"><?php echo esc_html( $this->response_message ); ?></p>
    33    <p class="success" style="padding:15px;background-color:#dff0d8;margin:0 0 10px;display:<?php echo $this->form_is_successful ? 'block' : 'none'; ?>"><?php echo esc_html__( 'Thank you for subscribing to our newsletter.', 'smaily-for-wp' ); ?></p>
    44    <?php if ( $this->autoresponder_id ) : ?>
    5         <input type="hidden" name="autoresponder" value="<?php echo $this->autoresponder_id; ?>" />
     5        <input type="hidden" name="autoresponder" value="<?php echo esc_attr( $this->autoresponder_id ); ?>" />
    66    <?php endif; ?>
    77    <input type="hidden" name="lang" value="<?php echo esc_html( $this->get_language_code() ); ?>" />
    8     <input type="hidden" name="success_url" value="<?php echo $this->success_url ? $this->success_url : get_site_url(); ?>" />
    9     <input type="hidden" name="failure_url" value="<?php echo $this->failure_url ? $this->failure_url : get_site_url(); ?>" />
     8    <input type="hidden" name="success_url" value="<?php echo $this->success_url ? esc_attr( $this->success_url ) : get_site_url(); ?>" />
     9    <input type="hidden" name="failure_url" value="<?php echo $this->failure_url ? esc_attr( $this->failure_url ) : get_site_url(); ?>" />
    1010    <p><input type="text" name="email" value="" placeholder="<?php echo esc_html__( 'Email', 'smaily-for-wp' ); ?>" required/></p>
    1111    <?php if ( $this->show_name ) : ?>
  • smaily-for-wp/tags/3.1.6/readme.txt

    r3226669 r3266343  
    44Requires PHP: 5.6
    55Requires at least: 4.0
    6 Stable tag: 3.1.5
     6Stable tag: 3.1.6
    77Tags: widget, plugin, sidebar, api, mail, email, marketing, smaily
    88Tested up to: 6.4
     
    7676
    7777== Changelog ==
     78
     79= 3.1.6 =
     80- Improve module security by escaping all of the basic newsletter form display fields.
    7881
    7982= 3.1.5 =
  • smaily-for-wp/tags/3.1.6/smaily-for-wp.php

    r3226669 r3266343  
    1010 * Text Domain:       smaily-for-wp
    1111 * Description:       Smaily newsletter subscription form.
    12  * Version:           3.1.5
     12 * Version:           3.1.6
    1313 * Author:            Sendsmaily LLC
    1414 * Author URI:        https://smaily.com
     
    2525 * Current plugin version.
    2626 */
    27 define( 'SMLY4WP_PLUGIN_VERSION', '3.1.5' );
     27define( 'SMLY4WP_PLUGIN_VERSION', '3.1.6' );
    2828
    2929/**
  • smaily-for-wp/tags/3.1.6/vendor/composer/installed.php

    r3226669 r3266343  
    22    'root' => array(
    33        'name' => 'smaily/smaily_for_wp',
    4         'pretty_version' => '3.1.5',
    5         'version' => '3.1.5.0',
    6         'reference' => '0e4797091dc28f1820c3fe8f5184e6c3f7c0985d',
     4        'pretty_version' => '3.1.6',
     5        'version' => '3.1.6.0',
     6        'reference' => '071e2889ffc3ff4a8b18a26851da8edaeab3ce05',
    77        'type' => 'plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'smaily/smaily_for_wp' => array(
    14             'pretty_version' => '3.1.5',
    15             'version' => '3.1.5.0',
    16             'reference' => '0e4797091dc28f1820c3fe8f5184e6c3f7c0985d',
     14            'pretty_version' => '3.1.6',
     15            'version' => '3.1.6.0',
     16            'reference' => '071e2889ffc3ff4a8b18a26851da8edaeab3ce05',
    1717            'type' => 'plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • smaily-for-wp/trunk/public/partials/smaily-for-wp-public-basic.php

    r2873649 r3266343  
    1 <form id="smly" action="https://<?php echo $this->domain; ?>.sendsmaily.net/api/opt-in/" method="post">
     1<form id="smly" action="https://<?php echo esc_attr( $this->domain ); ?>.sendsmaily.net/api/opt-in/" method="post">
    22    <p class="error" style="padding:15px;background-color:#f2dede;margin:0 0 10px;display:<?php echo $this->form_has_response ? 'block' : 'none'; ?>"><?php echo esc_html( $this->response_message ); ?></p>
    33    <p class="success" style="padding:15px;background-color:#dff0d8;margin:0 0 10px;display:<?php echo $this->form_is_successful ? 'block' : 'none'; ?>"><?php echo esc_html__( 'Thank you for subscribing to our newsletter.', 'smaily-for-wp' ); ?></p>
    44    <?php if ( $this->autoresponder_id ) : ?>
    5         <input type="hidden" name="autoresponder" value="<?php echo $this->autoresponder_id; ?>" />
     5        <input type="hidden" name="autoresponder" value="<?php echo esc_attr( $this->autoresponder_id ); ?>" />
    66    <?php endif; ?>
    77    <input type="hidden" name="lang" value="<?php echo esc_html( $this->get_language_code() ); ?>" />
    8     <input type="hidden" name="success_url" value="<?php echo $this->success_url ? $this->success_url : get_site_url(); ?>" />
    9     <input type="hidden" name="failure_url" value="<?php echo $this->failure_url ? $this->failure_url : get_site_url(); ?>" />
     8    <input type="hidden" name="success_url" value="<?php echo $this->success_url ? esc_attr( $this->success_url ) : get_site_url(); ?>" />
     9    <input type="hidden" name="failure_url" value="<?php echo $this->failure_url ? esc_attr( $this->failure_url ) : get_site_url(); ?>" />
    1010    <p><input type="text" name="email" value="" placeholder="<?php echo esc_html__( 'Email', 'smaily-for-wp' ); ?>" required/></p>
    1111    <?php if ( $this->show_name ) : ?>
  • smaily-for-wp/trunk/readme.txt

    r3226669 r3266343  
    44Requires PHP: 5.6
    55Requires at least: 4.0
    6 Stable tag: 3.1.5
     6Stable tag: 3.1.6
    77Tags: widget, plugin, sidebar, api, mail, email, marketing, smaily
    88Tested up to: 6.4
     
    7676
    7777== Changelog ==
     78
     79= 3.1.6 =
     80- Improve module security by escaping all of the basic newsletter form display fields.
    7881
    7982= 3.1.5 =
  • smaily-for-wp/trunk/smaily-for-wp.php

    r3226669 r3266343  
    1010 * Text Domain:       smaily-for-wp
    1111 * Description:       Smaily newsletter subscription form.
    12  * Version:           3.1.5
     12 * Version:           3.1.6
    1313 * Author:            Sendsmaily LLC
    1414 * Author URI:        https://smaily.com
     
    2525 * Current plugin version.
    2626 */
    27 define( 'SMLY4WP_PLUGIN_VERSION', '3.1.5' );
     27define( 'SMLY4WP_PLUGIN_VERSION', '3.1.6' );
    2828
    2929/**
  • smaily-for-wp/trunk/vendor/composer/installed.php

    r3226669 r3266343  
    22    'root' => array(
    33        'name' => 'smaily/smaily_for_wp',
    4         'pretty_version' => '3.1.5',
    5         'version' => '3.1.5.0',
    6         'reference' => '0e4797091dc28f1820c3fe8f5184e6c3f7c0985d',
     4        'pretty_version' => '3.1.6',
     5        'version' => '3.1.6.0',
     6        'reference' => '071e2889ffc3ff4a8b18a26851da8edaeab3ce05',
    77        'type' => 'plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'smaily/smaily_for_wp' => array(
    14             'pretty_version' => '3.1.5',
    15             'version' => '3.1.5.0',
    16             'reference' => '0e4797091dc28f1820c3fe8f5184e6c3f7c0985d',
     14            'pretty_version' => '3.1.6',
     15            'version' => '3.1.6.0',
     16            'reference' => '071e2889ffc3ff4a8b18a26851da8edaeab3ce05',
    1717            'type' => 'plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.