Version Description
(2021-08-25) = - Fix to stop warnings that were occurring with automatic updates to version 2.3.
Download this release
Release Info
Developer | Rustaurius |
Plugin | Restaurant Reservations |
Version | 2.3.2 |
Comparing to | |
See all releases |
Code changes from version 2.3.1 to 2.3.2
- includes/Migration.class.php +2 -0
- includes/PaymentManager.class.php +2 -1
- readme.txt +4 -1
- restaurant-reservations.php +1 -1
includes/Migration.class.php
CHANGED
@@ -31,6 +31,8 @@ class rtbMigrationManager {
|
|
31 |
* Currently users or admins can not do anything with bookings with the status draft. If the same
|
32 |
* booking needs to be made again, at least name or phone number or email needs to be cahgned
|
33 |
* for the same slot otherwise validation will fail stating there is a duplicate booking
|
|
|
|
|
34 |
*/
|
35 |
public function convert_draft_status_to_payment_pending_status() {
|
36 |
global $wpdb;
|
31 |
* Currently users or admins can not do anything with bookings with the status draft. If the same
|
32 |
* booking needs to be made again, at least name or phone number or email needs to be cahgned
|
33 |
* for the same slot otherwise validation will fail stating there is a duplicate booking
|
34 |
+
*
|
35 |
+
* @removal 2022-01-01
|
36 |
*/
|
37 |
public function convert_draft_status_to_payment_pending_status() {
|
38 |
global $wpdb;
|
includes/PaymentManager.class.php
CHANGED
@@ -147,7 +147,8 @@ class rtbPaymentManager {
|
|
147 |
'rtb-stripe-mode' => 'test',
|
148 |
'rtb-currency' => 'USD',
|
149 |
'rtb-stripe-currency-symbol' => '$',
|
150 |
-
'rtb-currency-symbol-location' => 'before'
|
|
|
151 |
);
|
152 |
|
153 |
return array_merge( $defaults, $this->defaults );
|
147 |
'rtb-stripe-mode' => 'test',
|
148 |
'rtb-currency' => 'USD',
|
149 |
'rtb-stripe-currency-symbol' => '$',
|
150 |
+
'rtb-currency-symbol-location' => 'before',
|
151 |
+
'rtb-payment-gateway' => array()
|
152 |
);
|
153 |
|
154 |
return array_merge( $defaults, $this->defaults );
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: FiveStarPlugins
|
|
3 |
Requires at Least: 4.4
|
4 |
Tested Up To: 5.8
|
5 |
Tags: reservation, reservations, restaurant reservations, reservation form, restaurant booking, restaurant reservation form, restaurant booking form, restaurant booking system, reservation system, online reservations, online restaurant booking, dinner reservations, restaurant form, gutenberg reservations, gutenberg restaurant reservations, gutenberg restaurant booking, mobile reservations, responsive reservations, table reservations, open table, book table, reserve table, easy reservations, simple reservations, quick restaurant reservations, custom reservation form, custom restaurant reservations
|
6 |
-
Stable tag: 2.3.
|
7 |
License: GPLv3
|
8 |
License URI:http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
Donate Link: https://www.etoilewebdesign.com/plugin-donations/
|
@@ -197,6 +197,9 @@ Find answers to even more questions in the [FAQ](http://doc.fivestarplugins.com/
|
|
197 |
|
198 |
== Changelog ==
|
199 |
|
|
|
|
|
|
|
200 |
= 2.3.1 (2021-08-23) =
|
201 |
- Correcting misnamed tag (SVN).
|
202 |
- Correcting tested up to version number that was accidentally reverted in 2.3.0 update push.
|
3 |
Requires at Least: 4.4
|
4 |
Tested Up To: 5.8
|
5 |
Tags: reservation, reservations, restaurant reservations, reservation form, restaurant booking, restaurant reservation form, restaurant booking form, restaurant booking system, reservation system, online reservations, online restaurant booking, dinner reservations, restaurant form, gutenberg reservations, gutenberg restaurant reservations, gutenberg restaurant booking, mobile reservations, responsive reservations, table reservations, open table, book table, reserve table, easy reservations, simple reservations, quick restaurant reservations, custom reservation form, custom restaurant reservations
|
6 |
+
Stable tag: 2.3.2
|
7 |
License: GPLv3
|
8 |
License URI:http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
Donate Link: https://www.etoilewebdesign.com/plugin-donations/
|
197 |
|
198 |
== Changelog ==
|
199 |
|
200 |
+
= 2.3.2 (2021-08-25) =
|
201 |
+
- Fix to stop warnings that were occurring with automatic updates to version 2.3.
|
202 |
+
|
203 |
= 2.3.1 (2021-08-23) =
|
204 |
- Correcting misnamed tag (SVN).
|
205 |
- Correcting tested up to version number that was accidentally reverted in 2.3.0 update push.
|
restaurant-reservations.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Five Star Restaurant Reservations - WordPress Booking Plugin
|
4 |
* Plugin URI: http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/
|
5 |
* Description: Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and more.
|
6 |
-
* Version: 2.3.
|
7 |
* Author: FiveStarPlugins
|
8 |
* Author URI: https://profiles.wordpress.org/fivestarplugins/
|
9 |
* Text Domain: restaurant-reservations
|
3 |
* Plugin Name: Five Star Restaurant Reservations - WordPress Booking Plugin
|
4 |
* Plugin URI: http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/
|
5 |
* Description: Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and more.
|
6 |
+
* Version: 2.3.2
|
7 |
* Author: FiveStarPlugins
|
8 |
* Author URI: https://profiles.wordpress.org/fivestarplugins/
|
9 |
* Text Domain: restaurant-reservations
|