WordPress Online Booking and Scheduling Plugin – Bookly - Version 21.3.1

Version Description

Download this release

Release Info

Developer Ladela
Plugin Icon 128x128 WordPress Online Booking and Scheduling Plugin – Bookly
Version 21.3.1
Comparing to
See all releases

Code changes from version 21.3 to 21.3.1

backend/components/dialogs/mailing/add_recipients/Dialog.php CHANGED
@@ -39,7 +39,7 @@ class Dialog extends Lib\Base\Component
39
 
40
  wp_localize_script( 'bookly-add-recipients.js', 'BooklyL10nAddRecipientsDialog', array(
41
  'service' => Lib\Utils\Common::getServiceDataForDropDown( 's.type = "simple"' ),
42
- 'staff' => Lib\Proxy\Pro::getStaffDataForDropDown(),
43
  'range' => $range,
44
  'l10n' => array(
45
  'recipients' => __( 'Recipients', 'bookly' ),
39
 
40
  wp_localize_script( 'bookly-add-recipients.js', 'BooklyL10nAddRecipientsDialog', array(
41
  'service' => Lib\Utils\Common::getServiceDataForDropDown( 's.type = "simple"' ),
42
+ 'staff' => Lib\Config::proActive() ? Lib\Proxy\Pro::getStaffDataForDropDown() : array( array( 'name' => '', 'items' => Lib\Entities\Staff::query()->select( 'id, full_name' )->whereNot( 'visibility', 'archive' )->sortBy( 'position, id' )->fetchArray(), ), ),
43
  'range' => $range,
44
  'l10n' => array(
45
  'recipients' => __( 'Recipients', 'bookly' ),
backend/modules/cloud_sms/resources/js/sms.js CHANGED
@@ -635,7 +635,7 @@ jQuery(function($) {
635
  columns.push({
636
  data: column,
637
  render: function(data, type, row, meta) {
638
- return $.fn.dataTable.render.text().display(data).replace('&lt;br /&gt;', '<br/>');
639
  }
640
  })
641
  } else {
635
  columns.push({
636
  data: column,
637
  render: function(data, type, row, meta) {
638
+ return $.fn.dataTable.render.text().display(data).replaceAll('&lt;br /&gt;', '<br/>');
639
  }
640
  })
641
  } else {
lib/utils/Collection.php CHANGED
@@ -25,7 +25,7 @@ class Collection implements \IteratorAggregate, \Countable
25
  */
26
  public function get( $key, $default = null )
27
  {
28
- return $this->has( $key ) ? stripslashes_deep( $this->values[ $key ] ) : $default;
29
  }
30
 
31
  /**
25
  */
26
  public function get( $key, $default = null )
27
  {
28
+ return $this->has( $key ) ? $this->values[ $key ] : $default;
29
  }
30
 
31
  /**
main.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Bookly
4
  Plugin URI: https://www.booking-wp-plugin.com/?utm_source=bookly_admin&utm_medium=plugins_page&utm_campaign=plugins_page
5
  Description: Bookly Plugin – is a great easy-to-use and easy-to-manage booking tool for service providers who think about their customers. The plugin supports a wide range of services provided by business and individuals who offer reservations through websites. Set up any reservation quickly, pleasantly and easily with Bookly!
6
- Version: 21.3
7
  Author: Bookly
8
  Author URI: https://www.booking-wp-plugin.com/?utm_source=bookly_admin&utm_medium=plugins_page&utm_campaign=plugins_page
9
  Text Domain: bookly
3
  Plugin Name: Bookly
4
  Plugin URI: https://www.booking-wp-plugin.com/?utm_source=bookly_admin&utm_medium=plugins_page&utm_campaign=plugins_page
5
  Description: Bookly Plugin – is a great easy-to-use and easy-to-manage booking tool for service providers who think about their customers. The plugin supports a wide range of services provided by business and individuals who offer reservations through websites. Set up any reservation quickly, pleasantly and easily with Bookly!
6
+ Version: 21.3.1
7
  Author: Bookly
8
  Author URI: https://www.booking-wp-plugin.com/?utm_source=bookly_admin&utm_medium=plugins_page&utm_campaign=plugins_page
9
  Text Domain: bookly
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://www.booking-wp-plugin.com/
5
  Requires at least: 3.7
6
  Tested up to: 6.1
7
  Requires PHP: 5.3.7
8
- Stable tag: 21.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
5
  Requires at least: 3.7
6
  Tested up to: 6.1
7
  Requires PHP: 5.3.7
8
+ Stable tag: 21.3.1
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11