Changeset 2621083
- Timestamp:
- 10/28/2021 12:10:11 AM (4 years ago)
- Location:
- rezgo/trunk
- Files:
-
- 7 edited
-
3ds_return_url.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
rezgo.php (modified) (2 diffs)
-
rezgo/include/config.rezgo.php (modified) (1 diff)
-
rezgo/templates/default/calendar_day.php (modified) (3 diffs)
-
rezgo/templates/default/confirm.php (modified) (1 diff)
-
rezgo_plugin_logic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rezgo/trunk/3ds_return_url.php
r2578352 r2621083 4 4 5 5 <script> 6 <?php echo LOCATION_WINDOW?>.postMessage('3DS-authentication-complete');6 window.top.postMessage('3DS-authentication-complete'); 7 7 </script> 8 8 -
rezgo/trunk/readme.txt
r2618089 r2621083 6 6 Tested up to: 5.8.1 7 7 Requires PHP: 5.2 8 Stable tag: 4.1 8 Stable tag: 4.1.1 9 9 10 10 Sell your tours, activities, and events on your WordPress website using Rezgo. … … 136 136 == Changelog == 137 137 138 = 4.1.1 = 139 * Bug fixes for Stripe 140 138 141 = 4.1 = 139 142 * Added ability to sort and order through review ratings on review list page -
rezgo/trunk/rezgo.php
r2618089 r2621083 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.1 7 Version: 4.1.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.1 ');58 define('REZGO_PLUGIN_VERSION', '4.1.1'); 59 59 60 60 require_once('rezgo/include/page_header.php'); -
rezgo/trunk/rezgo/include/config.rezgo.php
r2582657 r2621083 53 53 // The number of results per search page, this is used exclusively by the templates 54 54 define("REZGO_RESULTS_PER_PAGE", get_option('rezgo_result_num')); 55 56 define( "LOCATION_HREF", "top.location.href" ); 57 define( "LOCATION_REPLACE", "top.location.replace" ); 58 define( "LOCATION_WINDOW", "window.top" ); 59 define( "REZGO_FRAME_TARGET", "parent" ); 55 60 56 61 // gift cards to use for honeypot -
rezgo/trunk/rezgo/templates/default/calendar_day.php
r2618089 r2621083 447 447 <span class="rezgo-strike-price"> 448 448 <?php echo $site->formatCurrency($show_this)?> 449 </span> 449 </span><br> 450 450 451 451 <?php } else if(!$site->isVendor() && $site->exists($price->strike)) { ?> … … 455 455 <span class="rezgo-strike-price"> 456 456 <?php echo $site->formatCurrency($strike_price)?> 457 </span> 457 </span><br> 458 458 <?php } ?> 459 459 <span class="rezgo-strike-extra"><span> … … 463 463 <span class="discount"> 464 464 <?php echo $site->formatCurrency($price->base)?> 465 </span> 465 </span><br> 466 466 467 467 <?php } ?> -
rezgo/trunk/rezgo/templates/default/confirm.php
r2618089 r2621083 1824 1824 } 1825 1825 }, 1826 return_url: window.top.origin + ' /3ds_return_url.php'1826 return_url: window.top.origin + '<?php echo $site->base?>' + '/3ds_return_url' 1827 1827 }, 1828 1828 // Disable the default next action handling because we want to use an iframe -
rezgo/trunk/rezgo_plugin_logic.php
r2618089 r2621083 203 203 '(.+?)/3DS/?$' 204 204 => 'index.php?pagename=$matches[1]&mode=3DS', 205 206 '(.+?)/3ds_return_url/?$' 207 => 'index.php?pagename=$matches[1]&mode=3ds_return_url', 205 208 ); 206 209
Note: See TracChangeset
for help on using the changeset viewer.