Changeset 2991660
- Timestamp:
- 11/08/2023 08:44:41 AM (2 years ago)
- Location:
- webhotelier/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
includes/class-wp-webhotelier-helper.php (modified) (1 diff)
-
includes/class-wp-webhotelier-shortcode.php (modified) (2 diffs)
-
wp-webhotelier.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
webhotelier/trunk/README.txt
r2929108 r2991660 4 4 Tags: forms, hotel, webhotelier 5 5 Requires at least: 4.9 6 Tested up to: 6. 2.27 Stable tag: 1.8. 06 Tested up to: 6.4 7 Stable tag: 1.8.1 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 57 = 1.8.1= 58 * Fixes a default option check 59 * Tested up to WordPress 6.4 56 60 57 61 = 1.8.0= -
webhotelier/trunk/includes/class-wp-webhotelier-helper.php
r2656143 r2991660 71 71 foreach ($config_options['sections'] as $section) { 72 72 foreach ($section['fields'] as $field) { 73 if ( !empty($wp_options[$field['id']])) {73 if (isset($wp_options[$field['id']])) { 74 74 continue; 75 75 } -
webhotelier/trunk/includes/class-wp-webhotelier-shortcode.php
r2656143 r2991660 18 18 */ 19 19 private $plugin_name; 20 21 /** 22 * The version of this plugin. 23 * 24 * @var string $plugin_version 25 */ 26 private $plugin_version; 20 27 21 28 /** … … 94 101 $wp_webhotelier_atts['closing-date'] = (new DateTimeImmutable())->createFromFormat('d/m', $wp_webhotelier_atts['opening-closing-dates']['to'])->format('Y-m-d'); 95 102 $wp_webhotelier_atts['default-date'] = Wp_Webhotelier_Helper::createDefaultDate($wp_webhotelier_atts['opening-date'], $wp_webhotelier_atts['closing-date'], $wp_webhotelier_atts['days-after-checkin-allowed']); 96 103 97 104 //setting the id of the current view (and my_id for the page) of the loaded shortcode 98 105 $this->my_shortcode_id_num = ++self::$shortcode_class_id; -
webhotelier/trunk/wp-webhotelier.php
r2929108 r2991660 6 6 * Plugin URI: https://wplugged.com/docs/webhotelier-for-wordpress/ 7 7 * Description: Create and manage WebHotelier Forms easily through your WordPress 8 * Version: 1.8. 08 * Version: 1.8.1 9 9 * Author: WPlugged 10 10 * Author URI: https://wplugged.com … … 23 23 * Current plugin version. 24 24 */ 25 define('WP_WEBHOTELIER_VERSION', '1.8. 0');25 define('WP_WEBHOTELIER_VERSION', '1.8.1'); 26 26 27 27
Note: See TracChangeset
for help on using the changeset viewer.