Version Description
- Changes in all versions:
- Fix issue of not ability to approve / decline bookings in Safari browser (8.0.1.100)
- Fix Set url escaping by default in wpbc_get_params_in_url (8.0.1.101)
Download this release
Release Info
Developer | wpdevelop |
Plugin | Booking Calendar |
Version | 8.0.1 |
Comparing to | |
See all releases |
Code changes from version 8.0 to 8.0.1
- core/any/js/admin-support.js +5 -1
- core/wpbc-constants.php +2 -2
- core/wpbc-functions.php +1 -1
- readme.txt +7 -2
- wpdev-booking.php +2 -2
core/any/js/admin-support.js
CHANGED
@@ -108,7 +108,11 @@ function wpbc_admin_show_message_processing( message_type ){
|
|
108 |
* @param {bool} is_append (default true) - append notice instead of replacing
|
109 |
* @returns {undefined}
|
110 |
*/
|
111 |
-
function wpbc_admin_show_message( message, m_type, m_delay, is_append
|
|
|
|
|
|
|
|
|
112 |
|
113 |
var alert_class = 'notice '; //'alert ';
|
114 |
if (m_type == 'error') alert_class += 'notice-error '; //'alert-danger ';
|
108 |
* @param {bool} is_append (default true) - append notice instead of replacing
|
109 |
* @returns {undefined}
|
110 |
*/
|
111 |
+
function wpbc_admin_show_message( message, m_type, m_delay, is_append ){ //FixIn: 7.2.1.16
|
112 |
+
|
113 |
+
if ( is_append === undefined) { //FixIn: 8.0.1.100
|
114 |
+
is_append = true;
|
115 |
+
}
|
116 |
|
117 |
var alert_class = 'notice '; //'alert ';
|
118 |
if (m_type == 'error') alert_class += 'notice-error '; //'alert-danger ';
|
core/wpbc-constants.php
CHANGED
@@ -34,8 +34,8 @@ if (!defined('WP_BK_TIMILINE_LIMIT_HOURS')) define('WP_BK_TIMILINE_L
|
|
34 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
35 |
// SYSTEM CONSTANTS //////////////////////////////////////////////////////////////////////////////////////////////////
|
36 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
37 |
-
if (!defined('WP_BK_VERSION_NUM')) define('WP_BK_VERSION_NUM', '8.0' );
|
38 |
-
if (!defined('WP_BK_MINOR_UPDATE')) define('WP_BK_MINOR_UPDATE',
|
39 |
if (!defined('IS_USE_WPDEV_BK_CACHE')) define('IS_USE_WPDEV_BK_CACHE', true );
|
40 |
if (!defined('WP_BK_DEBUG_MODE')) define('WP_BK_DEBUG_MODE', false );
|
41 |
if (!defined('WP_BK_MIN')) define('WP_BK_MIN', false ); //TODO: Finish with this contstant, right now its not working correctly with TRUE status
|
34 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
35 |
// SYSTEM CONSTANTS //////////////////////////////////////////////////////////////////////////////////////////////////
|
36 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
37 |
+
if (!defined('WP_BK_VERSION_NUM')) define('WP_BK_VERSION_NUM', '8.0.1' );
|
38 |
+
if (!defined('WP_BK_MINOR_UPDATE')) define('WP_BK_MINOR_UPDATE', true );
|
39 |
if (!defined('IS_USE_WPDEV_BK_CACHE')) define('IS_USE_WPDEV_BK_CACHE', true );
|
40 |
if (!defined('WP_BK_DEBUG_MODE')) define('WP_BK_DEBUG_MODE', false );
|
41 |
if (!defined('WP_BK_MIN')) define('WP_BK_MIN', false ); //TODO: Finish with this contstant, right now its not working correctly with TRUE status
|
core/wpbc-functions.php
CHANGED
@@ -1957,7 +1957,7 @@ add_bk_filter('wpbc_get_user_ip', 'wpbc_get_user_ip');
|
|
1957 |
* @param type $only_these_parameters
|
1958 |
* @return type
|
1959 |
*/
|
1960 |
-
function wpbc_get_params_in_url( $page_param , $exclude_params = array(), $only_these_parameters = false, $is_escape_url =
|
1961 |
|
1962 |
$exclude_params[] = 'page';
|
1963 |
$exclude_params[] = 'post_type';
|
1957 |
* @param type $only_these_parameters
|
1958 |
* @return type
|
1959 |
*/
|
1960 |
+
function wpbc_get_params_in_url( $page_param , $exclude_params = array(), $only_these_parameters = false, $is_escape_url = true, $only_get = false ){
|
1961 |
|
1962 |
$exclude_params[] = 'page';
|
1963 |
$exclude_params[] = 'post_type';
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Booking Calendar ===
|
2 |
-
Contributors: wpdevelop
|
3 |
Donate link: http://wpbookingcalendar.com/buy/
|
4 |
Tags: booking calendar, availability calendar, ical, booking system, booking form, reservation, events, appointment, availability, schedule, calendar, contact form
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 4.8
|
8 |
-
Stable tag: 8.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -207,6 +207,11 @@ Please, fill free for suggesting [new ideas](http://wpbookingcalendar.com/ideas/
|
|
207 |
12. **Timeline**. Glance booking checking for a year (3 months or month), at front-end side of your website.
|
208 |
|
209 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
210 |
= 8.0 =
|
211 |
- Changes in **all** versions:
|
212 |
* **New** **Sync bookings** between different sources easily via .ics feeds
|
1 |
=== Booking Calendar ===
|
2 |
+
Contributors: wpdevelop, oplugins
|
3 |
Donate link: http://wpbookingcalendar.com/buy/
|
4 |
Tags: booking calendar, availability calendar, ical, booking system, booking form, reservation, events, appointment, availability, schedule, calendar, contact form
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 4.8
|
8 |
+
Stable tag: 8.0.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
207 |
12. **Timeline**. Glance booking checking for a year (3 months or month), at front-end side of your website.
|
208 |
|
209 |
== Changelog ==
|
210 |
+
= 8.0.1 =
|
211 |
+
- Changes in **all** versions:
|
212 |
+
* **Fix** issue of not ability to approve / decline bookings in Safari browser (8.0.1.100)
|
213 |
+
* **Fix** Set url escaping by default in wpbc_get_params_in_url (8.0.1.101)
|
214 |
+
|
215 |
= 8.0 =
|
216 |
- Changes in **all** versions:
|
217 |
* **New** **Sync bookings** between different sources easily via .ics feeds
|
wpdev-booking.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
Plugin Name: Booking Calendar
|
4 |
Plugin URI: http://wpbookingcalendar.com/demo/
|
5 |
Description: Online reservation and availability checking service for your site.
|
6 |
-
Author: wpdevelop
|
7 |
Author URI: http://wpbookingcalendar.com/
|
8 |
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 8.0
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2016 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|
3 |
Plugin Name: Booking Calendar
|
4 |
Plugin URI: http://wpbookingcalendar.com/demo/
|
5 |
Description: Online reservation and availability checking service for your site.
|
6 |
+
Author: wpdevelop, oplugins
|
7 |
Author URI: http://wpbookingcalendar.com/
|
8 |
Text Domain: booking
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 8.0.1
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2009 - 2016 www.wpbookingcalendar.com (email: info@wpbookingcalendar.com),
|