Skip to content

Commit

Permalink
release 2.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
liedekef committed Sep 17, 2024
1 parent a3e7ea3 commit 61d9c28
Show file tree
Hide file tree
Showing 13 changed files with 4,465 additions and 2,594 deletions.
9 changes: 2 additions & 7 deletions eme-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -1864,13 +1864,8 @@ function eme_is_integer_array( $only_integers ) {
}

function eme_is_list_of_int( $text ) {
if ( strstr( $text, ',' ) ) {
$id_arr = explode( ',', $text );
return eme_is_integer_array( $id_arr );
} elseif ( ! is_int( $text ) ) {
return false;
}
return true;
$id_arr = explode( ',', $text );
return eme_is_integer_array( $id_arr );
}

function eme_array_remove_empty_elements( $arr ) {
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.11
Version: 2.5.12
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 @@ -70,7 +70,7 @@
require_once 'class-expressivedate.php';

// Setting constants
define( 'EME_VERSION', '2.5.11' );
define( 'EME_VERSION', '2.5.12' );
define( 'DEFAULT_CAP_ADD_EVENT', 'edit_posts' );
define( 'DEFAULT_CAP_AUTHOR_EVENT', 'publish_posts' );
define( 'DEFAULT_CAP_PUBLISH_EVENT', 'publish_posts' );
Expand Down
Loading

0 comments on commit 61d9c28

Please sign in to comment.