Plugin Directory

Changeset 2991660


Ignore:
Timestamp:
11/08/2023 08:44:41 AM (2 years ago)
Author:
wplugged
Message:

Version 1.8.1

Location:
webhotelier/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • webhotelier/trunk/README.txt

    r2929108 r2991660  
    44Tags: forms, hotel, webhotelier
    55Requires at least: 4.9
    6 Tested up to: 6.2.2
    7 Stable tag: 1.8.0
     6Tested up to: 6.4
     7Stable tag: 1.8.1
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    5454
    5555== Changelog ==
     56
     57= 1.8.1=
     58* Fixes a default option check
     59* Tested up to WordPress 6.4
    5660
    5761= 1.8.0=
  • webhotelier/trunk/includes/class-wp-webhotelier-helper.php

    r2656143 r2991660  
    7171        foreach ($config_options['sections'] as $section) {
    7272            foreach ($section['fields'] as $field) {
    73                 if (!empty($wp_options[$field['id']])) {
     73                if (isset($wp_options[$field['id']])) {
    7474                    continue;
    7575                }
  • webhotelier/trunk/includes/class-wp-webhotelier-shortcode.php

    r2656143 r2991660  
    1818     */
    1919    private $plugin_name;
     20
     21    /**
     22     * The version of this plugin.
     23     *
     24     * @var      string    $plugin_version
     25     */
     26    private $plugin_version;
    2027
    2128    /**
     
    94101        $wp_webhotelier_atts['closing-date'] = (new DateTimeImmutable())->createFromFormat('d/m', $wp_webhotelier_atts['opening-closing-dates']['to'])->format('Y-m-d');
    95102        $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       
    97104        //setting the id of the current view (and my_id for the page) of the loaded shortcode
    98105        $this->my_shortcode_id_num = ++self::$shortcode_class_id;
  • webhotelier/trunk/wp-webhotelier.php

    r2929108 r2991660  
    66 * Plugin URI:        https://wplugged.com/docs/webhotelier-for-wordpress/
    77 * Description:       Create and manage WebHotelier Forms easily through your WordPress
    8  * Version:           1.8.0
     8 * Version:           1.8.1
    99 * Author:            WPlugged
    1010 * Author URI:        https://wplugged.com
     
    2323 * Current plugin version.
    2424 */
    25 define('WP_WEBHOTELIER_VERSION', '1.8.0');
     25define('WP_WEBHOTELIER_VERSION', '1.8.1');
    2626
    2727
Note: See TracChangeset for help on using the changeset viewer.