Plugin Directory

Changeset 3478115


Ignore:
Timestamp:
03/09/2026 12:45:29 PM (3 weeks ago)
Author:
consulinfolm
Message:

Version 1.0.15: fix Stable Tag mismatch, fix PHPCS UnescapedDBParameter warning on bookings count query

Location:
domilocus/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • domilocus/trunk/domilocus.php

    r3478060 r3478115  
    44 * Plugin URI: https://domilocus.consulinfo.it
    55 * Description: Complete booking and property management solution for vacation rentals, apartments, and accommodations with backend administration.
    6  * Version: 1.0.14
     6 * Version: 1.0.15
    77 * Author: ConsulInfo
    88 * Author URI: https://domilocus.consulinfo.it
     
    2323
    2424// Define plugin constants
    25 define('DOMILOCUS_VERSION', '1.0.14');
     25define('DOMILOCUS_VERSION', '1.0.15');
    2626define('DOMILOCUS_PLUGIN_FILE', __FILE__);
    2727define('DOMILOCUS_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • domilocus/trunk/includes/admin/class-domilocus-bookings-list-table.php

    r3478060 r3478115  
    260260       
    261261        // Total items
    262         // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.DirectDatabaseQuery
     262        // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.DirectDatabaseQuery, PluginCheck.Security.DirectDB.UnescapedDBParameter
    263263        $total_items = $wpdb->get_var("SELECT COUNT(*) FROM {$wpdb->prefix}domilocus_bookings WHERE $where_sql");
    264264       
  • domilocus/trunk/readme.txt

    r3478060 r3478115  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 1.0.14
     7Stable tag: 1.0.15
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    181181== Changelog ==
    182182
    183 = 1.0.14 =
    184 * Improved: bookings list now defaults to "Attive" tab (check-out >= today), keeping the main view clean. Added "Archivio" tab for past bookings and "Tutte" for unfiltered view.
    185 
    186 = 1.0.13 =
    187 * Added: access code system for external-platform guests (Booking.com, Airbnb, VRBO) — admin can generate a DML-XXXXXX code and email it; guests use email + code to log in via the app.
    188 * Added: `access_code` and `external_platform` columns with automatic DB migration.
    189 * Fixed: PHP syntax error caused by AJAX methods placed outside class scope.
    190 * Fixed: direct DB query caching warnings (PHPCS compliance).
    191 
    192183= 1.0.12 =
    193184* Fixed: admin calendar availability data now consistently uses `status` instead of a legacy `available` flag across month/week/day views.
Note: See TracChangeset for help on using the changeset viewer.