Plugin Directory

Changeset 3441527


Ignore:
Timestamp:
01/17/2026 10:25:20 AM (2 months ago)
Author:
pluginable
Message:

VERSION 1.2.1 Fixed space issue in email.

Location:
bank-transfer-bacs-through-stripe
Files:
730 added
4 edited

Legend:

Unmodified
Added
Removed
  • bank-transfer-bacs-through-stripe/trunk/changelog.txt

    r3440390 r3441527  
    11*** Stipe BACS Bank Transfer Payment Gateway ***
    22
     32026-01-17 - version 1.2.1
     4* Fixed space issue in email.
    352026-01-15 - version 1.2.0
    46* Feature added to choose status on order initiated and on payment made.
  • bank-transfer-bacs-through-stripe/trunk/pio-stripe-bacs.php

    r3440425 r3441527  
    44 *
    55 * @link              https://pluginable.dev/
    6  * @since             1.2.0
     6 * @since             1.2.1
    77 * @package           Pio_Stripe_Bacs
    88 *
     
    1111 * Plugin URI:        https://pluginable.dev/?ref=bank-transfer-bacs-through-stripe
    1212 * Description:       Enabling you to facilitate bank you customer transfers as a payment option through Stripe generated bank accounts.
    13  * Version:           1.2.0
     13 * Version:           1.2.1
    1414 * Author:            Pluginable.dev
    1515 * Author URI:        https://pluginable.dev/
     
    2828 * Currently plugin version.
    2929 */
    30 define( 'PIO_STRIPE_BACS_VERSION', '1.2.0' );
     30define( 'PIO_STRIPE_BACS_VERSION', '1.2.1' );
    3131
    3232define( 'PIO_STRIPE_BACS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • bank-transfer-bacs-through-stripe/trunk/public/class-pio-stripe-bacs-public.php

    r3360135 r3441527  
    44 *
    55 * @link       https://pluginable.dev/
    6  * @since      1.0.0
     6 * @since      1.2.1
    77 *
    88 * @package    Pio_Stripe_Bacs
     
    318318                        <?php foreach ( $bank_data as $bd ) : ?>
    319319                        <li class="">
    320                             <?php echo esc_html( $bd['label'] ); ?>:<strong><?php echo esc_html( $bd['value'] ); ?></strong>
     320                            <?php echo esc_html( $bd['label'] ); ?>:&nbsp;<strong><?php echo esc_html( $bd['value'] ); ?></strong>
    321321                        </li>
    322322                        <?php endforeach; ?>
     
    364364                        <?php foreach ( $bank_data as $bd ) : ?>
    365365                        <li class="">
    366                             <?php echo esc_html( $bd['label'] ); ?>:<strong><?php echo esc_html( $bd['value'] ); ?></strong>
     366                            <?php echo esc_html( $bd['label'] ); ?>:&nbsp;<strong><?php echo esc_html( $bd['value'] ); ?></strong>
    367367                        </li>
    368368                        <?php endforeach; ?>
  • bank-transfer-bacs-through-stripe/trunk/readme.txt

    r3440390 r3441527  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.2.0
     7Stable tag: 1.2.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4141
    4242== Changelog ==
     43= 1.2.1 =
     44* Fixed space issue in email.
    4345= 1.2.0 =
    4446* Feature added to choose status on order initiated and on payment made.
Note: See TracChangeset for help on using the changeset viewer.