Changeset 3450050
- Timestamp:
- 01/29/2026 10:39:33 PM (2 months ago)
- Location:
- wp-hotelier/trunk
- Files:
-
- 4 edited
-
hotelier.php (modified) (2 diffs)
-
includes/class-htl-room-variation.php (modified) (2 diffs)
-
includes/class-htl-room.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-hotelier/trunk/hotelier.php
r3448825 r3450050 4 4 * Plugin URI: https://wphotelier.com/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=wphotelierplugin 5 5 * Description: Hotel booking plugin for WordPress. 6 * Version: 2.18. 06 * Version: 2.18.1 7 7 * Author: WP Hotelier 8 8 * Author URI: https://wphotelier.com/ 9 9 * Requires at least: 4.0 10 * Tested up to: 6. 810 * Tested up to: 6.9 11 11 * License: GPLv3 12 12 * License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 32 32 * @var string 33 33 */ 34 public $version = '2.18. 0';34 public $version = '2.18.1'; 35 35 36 36 /** -
wp-hotelier/trunk/includes/class-htl-room-variation.php
r3448825 r3450050 6 6 * @category Class 7 7 * @package Hotelier/Classes 8 * @version 2.1 0.08 * @version 2.18.1 9 9 */ 10 10 … … 432 432 $variation = new HTL_APS_Room_Variation( $this ); 433 433 434 return $variation->get_min_price( $raw ); 434 if ( method_exists( $variation, 'get_min_price' ) ) { 435 return $variation->get_min_price( $raw ); 436 } else { 437 // Backwards compatibility with old APS versions 438 if ( $raw ) { 439 return 0; 440 } else { 441 return $variation->get_min_price_html(); 442 } 443 } 435 444 } else { 436 445 -
wp-hotelier/trunk/includes/class-htl-room.php
r3448825 r3450050 6 6 * @category Class 7 7 * @package Hotelier/Classes 8 * @version 2.1 0.08 * @version 2.18.1 9 9 */ 10 10 … … 884 884 $room = new HTL_APS_Room( $this ); 885 885 886 return $room->get_min_price( $raw ); 886 if ( method_exists( $room, 'get_min_price' ) ) { 887 return $room->get_min_price( $raw ); 888 } else { 889 // Backwards compatibility with old APS versions 890 if ( $raw ) { 891 return 0; 892 } else { 893 return $room->get_min_price_html(); 894 } 895 } 887 896 } else { 888 897 $min_price = 0; -
wp-hotelier/trunk/readme.txt
r3448825 r3450050 4 4 Requires at least: 4.1 5 5 Tested up to: 6.9 6 Stable tag: 2.18. 06 Stable tag: 2.18.1 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 132 132 == Changelog == 133 133 134 = 2.18.1 - 2026-01-28 = 135 * Fixed - Prevent fatal error with old Advanced Pricing extension. 136 134 137 = 2.18.0 - 2026-01-28 = 135 138 * Add - Support for WordPress 6.9.
Note: See TracChangeset
for help on using the changeset viewer.