Skip to content

Commit

Permalink
release 2.4.27
Browse files Browse the repository at this point in the history
  • Loading branch information
liedekef committed Feb 1, 2024
1 parent 7f7b1de commit e2a9871
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eme-events.php
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,7 @@ function eme_events_page_content() {
// the state can change after the last function call, so check it
$payment = eme_get_payment( payment_randomid: $payment_randomid );
$paid = eme_get_payment_paid( $payment );
if ( empty( $pg_pid ) ) {
if ( empty( $payment['pg_pid'] ) ) {
$result = 'fail';
} elseif ( $payment['pg_handled'] == 1 && $paid ) {
$result = 'success';
Expand Down
4 changes: 2 additions & 2 deletions events-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/*
Plugin Name: Events Made Easy
Version: 2.4.26
Version: 2.4.27
Plugin URI: https://www.e-dynamics.be/wordpress
Update URI: https://github.com/liedekef/events-made-easy/
Description: Manage and display events and memberships. Also includes recurring events; locations; widgets; maps; RSVP; ICAL and RSS feeds; Paypal, 2Checkout and others.
Expand Down Expand Up @@ -69,7 +69,7 @@
require_once 'class-expressivedate.php';

// Setting constants
define( 'EME_VERSION', '2.4.26' );
define( 'EME_VERSION', '2.4.27' );
define( 'DEFAULT_CAP_ADD_EVENT', 'edit_posts' );
define( 'DEFAULT_CAP_AUTHOR_EVENT', 'publish_posts' );
define( 'DEFAULT_CAP_PUBLISH_EVENT', 'publish_posts' );
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.e-dynamics.be/wordpress
Tags: events, memberships, locations, bookings, calendars, maps, payment gateways, drip content
Requires at least: 5.4
Tested up to: 6.4.3
Stable tag: 2.4.26
Stable tag: 2.4.27
Requires PHP: 8.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -98,6 +98,9 @@ Events list and calendars can be added to your blogs through widgets, shortcodes
See the FAQ section at the [Official site](https://www.e-dynamics.be/wordpress/).

== Changelog ==
= 2.4.27 (2024/02/01) =
* Correction release: for payments the failure message was shown even after successfull payment (apart from the message, all is correctly handled)

= 2.4.26 (2024/02/01) =
* Added action hook eme_options_postsave_action, to allow own code to be called upon saving options
This is needed for e.g. custom payment gateways that need a webhook created
Expand Down

0 comments on commit e2a9871

Please sign in to comment.