Changeset 2905396
- Timestamp:
- 04/28/2023 01:34:07 AM (3 years ago)
- Location:
- rezgo/trunk
- Files:
-
- 5 edited
-
readme.txt (modified) (2 diffs)
-
rezgo.php (modified) (2 diffs)
-
rezgo/include/class.rezgo.php (modified) (1 diff)
-
rezgo/templates/default/order.php (modified) (1 diff)
-
rezgo_service_functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rezgo/trunk/readme.txt
r2884542 r2905396 4 4 Tags: tour operator software, tour booking system, activity booking software, tours, activities, events, attractions, booking, reservation, ticketing, e-commerce, business, rezgo 5 5 Requires at least: 3.3.0 6 Tested up to: 6. 1.16 Tested up to: 6.2 7 7 Requires PHP: 5.2 8 Stable tag: 4.5 8 Stable tag: 4.5.1 9 9 10 10 Sell your tours, activities, and events on your WordPress website using Rezgo. … … 134 134 == Changelog == 135 135 136 = 4.5.1 = 137 * Bug fixes 138 136 139 = 4.5 = 137 140 * Added Google GTM/GA4 support -
rezgo/trunk/rezgo.php
r2884542 r2905396 5 5 Plugin URI: https://wordpress.org/plugins/rezgo/ 6 6 Description: Connect WordPress to your Rezgo account and accept online bookings directly on your website. 7 Version: 4.5 7 Version: 4.5.1 8 8 Author: Rezgo 9 9 Author URI: http://www.rezgo.com … … 56 56 define('REZGO_PLUGIN_NAME', 'rezgo'); 57 57 define('REZGO_PLUGIN_DIR', plugin_dir_path(__FILE__)); 58 define('REZGO_PLUGIN_VERSION', '4.5 ');58 define('REZGO_PLUGIN_VERSION', '4.5.1'); 59 59 60 60 require_once('rezgo/include/page_header.php'); -
rezgo/trunk/rezgo/include/class.rezgo.php
r2884542 r2905396 641 641 // ------------------------------------------------------------------------------ 642 642 function getTemplate($req, $fullpath=false) { 643 reset($GLOBALS);643 //reset($GLOBALS); 644 644 foreach($GLOBALS as $key => $val) { 645 645 if(($key != strstr($key,"HTTP_")) && ($key != strstr($key, "_")) && ($key != 'GLOBALS')) { -
rezgo/trunk/rezgo/templates/default/order.php
r2884542 r2905396 584 584 } ?> 585 585 586 <div class="rezgo-order-memo rezgo-order-date-<?php echo esc_attr(date('Y-m-d', (string) $item->booking_date)); ?> rezgo-order-item-<?php echo esc_attr($item->uid); ?>"></div> 586 <?php 587 if ((string) $item->date_selection == 'never') { 588 $order_item_class = 'open'; 589 } else { 590 $order_item_class = date('Y-m-d', (string) $item->booking_date); 591 } 592 ?> 593 594 <div class="rezgo-order-memo rezgo-order-date-<?php echo esc_attr($order_item_class); ?> rezgo-order-item-<?php echo esc_attr($item->uid); ?>"></div> 587 595 </div> 588 596 -
rezgo/trunk/rezgo_service_functions.php
r2777497 r2905396 3 3 function rezgo_return_file($filePath, $additionalVars = array()) 4 4 { 5 reset($GLOBALS);5 //reset($GLOBALS); 6 6 foreach($GLOBALS as $key => $val) { 7 7 if(($key != strstr($key,"HTTP_")) && ($key != strstr($key, "_")) && ($key != 'GLOBALS')) {
Note: See TracChangeset
for help on using the changeset viewer.