Skip to content

Commit

Permalink
Changelog update.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlimaza committed Sep 29, 2020
1 parent 1752aa2 commit 21ee8da
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pmpro-sponsored-members.php
Original file line number Diff line number Diff line change
Expand Up @@ -907,9 +907,9 @@ function pmprosm_pmpro_checkout_boxes()

if ($max_seats > 1) {
if ( isset( $pmprosm_values['seat_cost_text'] ) ) {
printf( __( "Enter a number from %d to %d. %s", "pmpro-sponsored-members" ), $min_seats, $pmprosm_values['max_seats'], $pmprosm_values['seat_cost_text'] );
printf( esc_html__( "Enter a number from %d to %d. %s", "pmpro-sponsored-members" ), $min_seats, $pmprosm_values['max_seats'], $pmprosm_values['seat_cost_text'] );
} else {
printf( __( "Enter a number from %d to %d. +%s per extra seat.", "pmpro-sponsored-members" ), $min_seats, $pmprosm_values['max_seats'], $pmpro_currency_symbol . $pmprosm_values['seat_cost'] );
printf( esc_html__( "Enter a number from %d to %d. +%s per extra seat.", "pmpro-sponsored-members" ), $min_seats, $pmprosm_values['max_seats'], $pmpro_currency_symbol . $pmprosm_values['seat_cost'] );
}
}
?>
Expand Down
9 changes: 9 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ Once the plugin is activated with the PMPROSM_MAIN_ACCOUNT_LEVEL and PMPROSM_SPO
Please post it in the issues section of GitHub and we'll fix it as soon as we can. Thanks for helping. https://github.com/strangerstudios/pmpro-sponsored-members/issues

== Changelog ==
= 0.8 - 30-09-2020 =
* BUG FIX: Fixed bug where PayPal Express wasn't saving the number of 'child' seats correctly.
* BUG FIX: Fixed a PHP warning when editing non-members in the WordPress dashboard. Thanks @cipriantepes
* BUG FIX: Fixed a warning when child level ID's was an array and tried to output a string value during checkout.
* BUG FIX: Fixed child account heading (numbering) when creating child accounts during checkout. This was out by 1.
* BUG FIX/ENHANCEMENT: Prevent sponsored members for signing up with their own discount codes.
* ENHANCEMENT: New filter added to allow dynamic changes done to code created - 'pmprosm_sponsored_code_settings'
* ENHANCEMENT: Localization and escaping of text on the front-end. Thanks @sebthesun

= .7 =
* BUG FIX: Fixed bug where discount codes were not being saved when using PayPal Express. Fixed other PayPal Express-related bugs.
* BUG FIX: Fixed bugs with the checkout URL generated for the sponsor code.
Expand Down

0 comments on commit 21ee8da

Please sign in to comment.