Skip to content

Commit

Permalink
release 2.5.26
Browse files Browse the repository at this point in the history
  • Loading branch information
liedekef committed Dec 25, 2024
1 parent 8f17535 commit ae3511e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion eme-events.php
Original file line number Diff line number Diff line change
Expand Up @@ -10137,7 +10137,7 @@ function eme_ajax_events_list() {

// we can't use the function eme_get_datatables_limit, since the "limit" and "offset" parts can be used separately
$PageSize = isset( $_POST['jtPageSize'] ) ? intval( $_POST['jtPageSize'] ) : 0;
$StartIndex = isset( $_POST['StartIndex'] ) ? intval( $_POST['StartIndex'] ) : 0;
$StartIndex = isset( $_POST['jtStartIndex'] ) ? intval( $_POST['jtStartIndex'] ) : 0;

$scope = isset( $_POST['scope'] ) ? esc_sql( eme_sanitize_request( $_POST['scope'] ) ) : 'future';
$orderby = eme_get_datatables_orderby() ?: 'ASC';
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.5.25
Version: 2.5.26
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 @@ -71,7 +71,7 @@
require_once 'class-expressivedate.php';

// Setting constants
define( 'EME_VERSION', '2.5.25' );
define( 'EME_VERSION', '2.5.26' );
define( 'DEFAULT_CAP_ADD_EVENT', 'edit_posts' );
define( 'DEFAULT_CAP_AUTHOR_EVENT', 'publish_posts' );
define( 'DEFAULT_CAP_PUBLISH_EVENT', 'publish_posts' );
Expand Down
4 changes: 2 additions & 2 deletions langs/events-made-easy.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the Events Made Easy plugin.
msgid ""
msgstr ""
"Project-Id-Version: Events Made Easy 2.5.24\n"
"Project-Id-Version: Events Made Easy 2.5.25\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/events-made-easy\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-12-25T20:44:23+00:00\n"
"POT-Creation-Date: 2024-12-25T20:55:43+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.11.0-alpha-1b3a27a\n"
"X-Domain: events-made-easy\n"
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: 6.0
Tested up to: 6.7
Stable tag: 2.5.25
Stable tag: 2.5.26
Requires PHP: 8.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -99,6 +99,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.5.26 (2024/12/25) =
* Paging fix due to typo

= 2.5.25 (2024/12/25) =
* The configured payment gateways were not showing as expected
* Make "Show all bookings" in people overview work again as expected
Expand Down

0 comments on commit ae3511e

Please sign in to comment.