Plugin Directory

Changeset 2905834


Ignore:
Timestamp:
04/28/2023 06:35:00 PM (3 years ago)
Author:
rezgo
Message:

committing version 4.5.2

Location:
rezgo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • rezgo/trunk/readme.txt

    r2905396 r2905834  
    66Tested up to: 6.2
    77Requires PHP: 5.2
    8 Stable tag: 4.5.1
     8Stable tag: 4.5.2
    99
    1010Sell your tours, activities, and events on your WordPress website using Rezgo.
     
    134134== Changelog ==
    135135
     136= 4.5.2 =
     137* Bug fix for open items on order view
     138
    136139= 4.5.1 =
    137140* Bug fixes
  • rezgo/trunk/rezgo.php

    r2905396 r2905834  
    55    Plugin URI: https://wordpress.org/plugins/rezgo/
    66    Description: Connect WordPress to your Rezgo account and accept online bookings directly on your website.
    7     Version: 4.5.1
     7    Version: 4.5.2
    88    Author: Rezgo
    99    Author URI: http://www.rezgo.com
     
    5656define('REZGO_PLUGIN_NAME', 'rezgo');
    5757define('REZGO_PLUGIN_DIR', plugin_dir_path(__FILE__));
    58 define('REZGO_PLUGIN_VERSION', '4.5.1');
     58define('REZGO_PLUGIN_VERSION', '4.5.2');
    5959
    6060require_once('rezgo/include/page_header.php');
  • rezgo/trunk/rezgo/templates/default/order.php

    r2905396 r2905834  
    585585
    586586                                <?php
    587                                 if ((string) $item->date_selection == 'never') {
     587                                if (!in_array((string) $item->date_selection, $date_types)) {
    588588                                    $order_item_class = 'open';
    589589                                } else {
Note: See TracChangeset for help on using the changeset viewer.