Version Description
- tweaked installation SQL so it's MariaDB-compatible
- fixed php warning when no location permalink provided
Download this release
Release Info
Developer | netweblogic |
Plugin | Events Manager |
Version | 6.1.1 |
Comparing to | |
See all releases |
Code changes from version 6.1.0.1 to 6.1.1
- em-install.php +4 -0
- em-posts.php +1 -1
- events-manager.php +2 -2
- readme.txt +3 -2
em-install.php
CHANGED
@@ -1330,6 +1330,10 @@ function em_upgrade_current_installation(){
|
|
1330 |
}
|
1331 |
}
|
1332 |
EM_Admin_Notices::remove('v6.1-booking-atomic-meta-error', is_multisite());
|
|
|
|
|
|
|
|
|
1333 |
}
|
1334 |
}
|
1335 |
|
1330 |
}
|
1331 |
}
|
1332 |
EM_Admin_Notices::remove('v6.1-booking-atomic-meta-error', is_multisite());
|
1333 |
+
EM_Admin_Notices::remove('v6.1-atomic-error', is_multisite());
|
1334 |
+
}
|
1335 |
+
if( $current_version != '' && version_compare($current_version, '6.1.1', '<') ){
|
1336 |
+
EM_Admin_Notices::remove('v6.1-atomic-error', is_multisite());
|
1337 |
}
|
1338 |
}
|
1339 |
|
em-posts.php
CHANGED
@@ -270,7 +270,7 @@ function wp_events_plugin_init(){
|
|
270 |
add_filter('gutenberg_can_edit_post_type', 'em_gutenberg_support', 10, 2 ); //Gutenberg
|
271 |
}
|
272 |
|
273 |
-
if( strstr(EM_POST_TYPE_EVENT_SLUG, EM_POST_TYPE_LOCATION_SLUG) !== FALSE ){
|
274 |
//Now register posts, but check slugs in case of conflicts and reorder registrations
|
275 |
register_post_type(EM_POST_TYPE_EVENT, $event_post_type);
|
276 |
if ( get_option('dbem_recurrence_enabled') ){
|
270 |
add_filter('gutenberg_can_edit_post_type', 'em_gutenberg_support', 10, 2 ); //Gutenberg
|
271 |
}
|
272 |
|
273 |
+
if( EM_POST_TYPE_LOCATION_SLUG !== '' && strstr(EM_POST_TYPE_EVENT_SLUG, EM_POST_TYPE_LOCATION_SLUG) !== FALSE ){
|
274 |
//Now register posts, but check slugs in case of conflicts and reorder registrations
|
275 |
register_post_type(EM_POST_TYPE_EVENT, $event_post_type);
|
276 |
if ( get_option('dbem_recurrence_enabled') ){
|
events-manager.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Events Manager
|
4 |
-
Version: 6.1.
|
5 |
Plugin URI: http://wp-events-plugin.com
|
6 |
Description: Event registration and booking management for WordPress. Recurring events, locations, webinars, google maps, rss, ical, booking registration and more!
|
7 |
Author: Marcus Sykes
|
@@ -28,7 +28,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
28 |
*/
|
29 |
|
30 |
// Setting constants
|
31 |
-
define('EM_VERSION', '6.1.
|
32 |
define('EM_PRO_MIN_VERSION', '3.0'); //self expanatory
|
33 |
define('EM_PRO_MIN_VERSION_CRITICAL', '3.0'); //self expanatory
|
34 |
define('EM_DIR', dirname( __FILE__ )); //an absolute path to this directory
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Events Manager
|
4 |
+
Version: 6.1.1
|
5 |
Plugin URI: http://wp-events-plugin.com
|
6 |
Description: Event registration and booking management for WordPress. Recurring events, locations, webinars, google maps, rss, ical, booking registration and more!
|
7 |
Author: Marcus Sykes
|
28 |
*/
|
29 |
|
30 |
// Setting constants
|
31 |
+
define('EM_VERSION', '6.1.1'); //self expanatory, although version currently may not correspond directly with published version number. until 6.0 we're stuck updating 5.999.x
|
32 |
define('EM_PRO_MIN_VERSION', '3.0'); //self expanatory
|
33 |
define('EM_PRO_MIN_VERSION_CRITICAL', '3.0'); //self expanatory
|
34 |
define('EM_DIR', dirname( __FILE__ )); //an absolute path to this directory
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: bookings, calendar, tickets, events, buddypress, event management, google
|
|
5 |
Text Domain: events-manager
|
6 |
Requires at least: 5.2
|
7 |
Tested up to: 6.0.1
|
8 |
-
Stable tag: 6.1
|
9 |
Requires PHP: 5.3
|
10 |
|
11 |
Fully featured event registration management including recurring events, locations management, calendar, Google map integration, booking management
|
@@ -135,8 +135,9 @@ See our [FAQ](http://wp-events-plugin.com/documentation/faq/) page, which is upd
|
|
135 |
15. Clean forms for submitting and managing events, as well as booking events for users.
|
136 |
|
137 |
== Changelog ==
|
138 |
-
= 6.1.
|
139 |
* tweaked installation SQL so it's MariaDB-compatible
|
|
|
140 |
|
141 |
= 6.1 =
|
142 |
* WARNING! MAJOR architecture change for how tickets are stored. This should be backward compatible and a well-tested migration process, but (as you should always do anyway) back up before upgrading!
|
5 |
Text Domain: events-manager
|
6 |
Requires at least: 5.2
|
7 |
Tested up to: 6.0.1
|
8 |
+
Stable tag: 6.1.1
|
9 |
Requires PHP: 5.3
|
10 |
|
11 |
Fully featured event registration management including recurring events, locations management, calendar, Google map integration, booking management
|
135 |
15. Clean forms for submitting and managing events, as well as booking events for users.
|
136 |
|
137 |
== Changelog ==
|
138 |
+
= 6.1.1 =
|
139 |
* tweaked installation SQL so it's MariaDB-compatible
|
140 |
+
* fixed php warning when no location permalink provided
|
141 |
|
142 |
= 6.1 =
|
143 |
* WARNING! MAJOR architecture change for how tickets are stored. This should be backward compatible and a well-tested migration process, but (as you should always do anyway) back up before upgrading!
|