Changeset 2777497
- Timestamp:
- 08/30/2022 03:32:39 AM (4 years ago)
- Location:
- rezgo/trunk
- Files:
-
- 17 edited
-
gift_card_ajax.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
rezgo.php (modified) (2 diffs)
-
rezgo/templates/default/booking_complete.php (modified) (1 diff)
-
rezgo/templates/default/booking_complete_print.php (modified) (1 diff)
-
rezgo/templates/default/booking_order.php (modified) (1 diff)
-
rezgo/templates/default/booking_tickets.php (modified) (1 diff)
-
rezgo/templates/default/booking_voucher.php (modified) (1 diff)
-
rezgo/templates/default/confirm.php (modified) (1 diff)
-
rezgo/templates/default/gift_card_payment.php (modified) (1 diff)
-
rezgo/templates/default/index.php (modified) (1 diff)
-
rezgo/templates/default/modal.php (modified) (1 diff)
-
rezgo/templates/default/privacy.php (modified) (1 diff)
-
rezgo/templates/default/terms.php (modified) (1 diff)
-
rezgo/templates/default/tour_details.php (modified) (1 diff)
-
rezgo/templates/default/waiver.php (modified) (2 diffs)
-
rezgo_service_functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rezgo/trunk/gift_card_ajax.php
r2762643 r2777497 183 183 $result = $site->getGiftCard($_POST['gcNum']); 184 184 185 if (array_key_exists('card', $result)) {185 if (isset($result->card)) { 186 186 $result->card->status = 1; 187 188 187 $result->card->number = $site->cardFormat($result->card->number); 189 188 } -
rezgo/trunk/readme.txt
r2775916 r2777497 6 6 Tested up to: 6.0.1 7 7 Requires PHP: 5.2 8 Stable tag: 4.1.1 58 Stable tag: 4.1.16 9 9 10 10 Sell your tours, activities, and events on your WordPress website using Rezgo. … … 133 133 134 134 == Changelog == 135 = 4.1.16 = 136 * fixes to allowed tags for wp_kses() 137 135 138 = 4.1.15 = 136 139 * PHP 8 compatibility fixes -
rezgo/trunk/rezgo.php
r2775916 r2777497 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.1 57 Version: 4.1.16 8 8 Author: Rezgo 9 9 Author URI: http://www.rezgo.com … … 54 54 define('REZGO_PLUGIN_NAME', 'rezgo'); 55 55 define('REZGO_PLUGIN_DIR', plugin_dir_path(__FILE__)); 56 define('REZGO_PLUGIN_VERSION', '4.1.1 5');56 define('REZGO_PLUGIN_VERSION', '4.1.16'); 57 57 58 58 require_once('rezgo/include/page_header.php'); -
rezgo/trunk/rezgo/templates/default/booking_complete.php
r2775176 r2777497 40 40 'ol' => array(), 41 41 'li' => array(), 42 'a' => array(), 42 'a' => array( 43 'href' => array(), 44 'title' => array(), 45 'class' => array(), 46 'target' => array(), 47 ), 43 48 'img' => array( 44 49 'src' => array(), -
rezgo/trunk/rezgo/templates/default/booking_complete_print.php
r2769142 r2777497 26 26 'ol' => array(), 27 27 'li' => array(), 28 'a' => array(), 28 'a' => array( 29 'href' => array(), 30 'title' => array(), 31 'class' => array(), 32 'target' => array(), 33 ), 29 34 'img' => array( 30 35 'src' => array(), -
rezgo/trunk/rezgo/templates/default/booking_order.php
r2775176 r2777497 51 51 'ol' => array(), 52 52 'li' => array(), 53 'a' => array(), 53 'a' => array( 54 'href' => array(), 55 'title' => array(), 56 'class' => array(), 57 'target' => array(), 58 ), 54 59 'img' => array( 55 60 'src' => array(), -
rezgo/trunk/rezgo/templates/default/booking_tickets.php
r2774516 r2777497 73 73 'ol' => array(), 74 74 'li' => array(), 75 'a' => array(), 75 'a' => array( 76 'href' => array(), 77 'title' => array(), 78 'class' => array(), 79 'target' => array(), 80 ), 76 81 'img' => array( 77 82 'src' => array(), -
rezgo/trunk/rezgo/templates/default/booking_voucher.php
r2762643 r2777497 16 16 'ol' => array(), 17 17 'li' => array(), 18 'a' => array(), 18 'a' => array( 19 'href' => array(), 20 'title' => array(), 21 'class' => array(), 22 'target' => array(), 23 ), 19 24 'img' => array( 20 25 'src' => array(), -
rezgo/trunk/rezgo/templates/default/confirm.php
r2775176 r2777497 37 37 'ol' => array(), 38 38 'li' => array(), 39 'a' => array(), 39 'a' => array( 40 'href' => array(), 41 'title' => array(), 42 'class' => array(), 43 'target' => array(), 44 ), 40 45 'img' => array( 41 46 'src' => array(), -
rezgo/trunk/rezgo/templates/default/gift_card_payment.php
r2762643 r2777497 38 38 'ol' => array(), 39 39 'li' => array(), 40 'a' => array(), 40 'a' => array( 41 'href' => array(), 42 'title' => array(), 43 'class' => array(), 44 'target' => array(), 45 ), 41 46 ); 42 47 ?> -
rezgo/trunk/rezgo/templates/default/index.php
r2762643 r2777497 17 17 'ol' => array(), 18 18 'li' => array(), 19 'a' => array(), 19 'a' => array( 20 'href' => array(), 21 'title' => array(), 22 'class' => array(), 23 'target' => array(), 24 ), 20 25 'img' => array( 21 26 'src' => array(), -
rezgo/trunk/rezgo/templates/default/modal.php
r2762643 r2777497 59 59 'ol' => array(), 60 60 'li' => array(), 61 'a' => array(), 61 'a' => array( 62 'href' => array(), 63 'title' => array(), 64 'class' => array(), 65 'target' => array(), 66 ), 62 67 'u' => array(), 63 68 'hr' => array(), -
rezgo/trunk/rezgo/templates/default/privacy.php
r2762643 r2777497 21 21 'ol' => array(), 22 22 'li' => array(), 23 'a' => array(), 23 'a' => array( 24 'href' => array(), 25 'title' => array(), 26 'class' => array(), 27 'target' => array(), 28 ), 24 29 'img' => array( 25 30 'src' => array(), -
rezgo/trunk/rezgo/templates/default/terms.php
r2775176 r2777497 38 38 'ol' => array(), 39 39 'li' => array(), 40 'a' => array(), 40 'a' => array( 41 'href' => array(), 42 'title' => array(), 43 'class' => array(), 44 'target' => array(), 45 ), 41 46 'img' => array( 42 47 'src' => array(), -
rezgo/trunk/rezgo/templates/default/tour_details.php
r2775176 r2777497 43 43 'ol' => array(), 44 44 'li' => array(), 45 'a' => array(), 45 'a' => array( 46 'href' => array(), 47 'title' => array(), 48 'class' => array(), 49 'target' => array(), 50 ), 46 51 'img' => array( 47 52 'src' => array(), -
rezgo/trunk/rezgo/templates/default/waiver.php
r2769142 r2777497 17 17 'ol' => array(), 18 18 'li' => array(), 19 'a' => array(), 19 'a' => array( 20 'href' => array(), 21 'title' => array(), 22 'class' => array(), 23 'target' => array(), 24 ), 20 25 'u' => array(), 21 26 'hr' => array(), … … 343 348 <?php 344 349 $allowed_html = array( 'a' => array( 345 'href' => array(), 346 'id' => array(), 347 'class' => array(), 348 'data' => array(), 350 'href' => array(), 351 'title' => array(), 352 'class' => array(), 353 'target' => array(), 354 'data' => array(), 349 355 ), 350 356 'span' => array( -
rezgo/trunk/rezgo_service_functions.php
r2756201 r2777497 1 1 <?php 2 function rezgo_return_file($filePath = '', $additionalVars = array()) 2 3 function rezgo_return_file($filePath, $additionalVars = array()) 3 4 { 4 5 reset($GLOBALS); … … 33 34 } 34 35 35 function rezgo_render_settings_view($viewFile = '', $vars)36 function rezgo_render_settings_view($viewFile, $vars) 36 37 { 37 38 extract($vars);
Note: See TracChangeset
for help on using the changeset viewer.