Plugin Directory

Changeset 3330085


Ignore:
Timestamp:
07/18/2025 08:59:35 AM (9 months ago)
Author:
misterplan
Message:

Versión 1.1.44

Location:
misterplan
Files:
349 added
4 edited

Legend:

Unmodified
Added
Removed
  • misterplan/trunk/class.mrplan_TMrPlanPluginAdmin.php

    r3324091 r3330085  
    535535            $datos->v_results                   = (int) $_POST['v_results'];
    536536        }
    537         if(!empty($_POST['autosearch'])){
     537        if(isset($_POST['autosearch'])){
    538538            $datos->autosearch                  = (int) $_POST['autosearch'];
    539539        }
    540         if(!empty($_POST['disableUbicacion'])){
     540        if(isset($_POST['disableUbicacion'])){
    541541            $datos->disableUbicacion                    = (int) $_POST['disableUbicacion'];
    542542        }
  • misterplan/trunk/init.php

    r3324091 r3330085  
    88 * Author: MisterPlan
    99 * Author URI: https://misterplan.es
    10  * Version: 1.1.43
     10 * Version: 1.1.44
    1111 * Text Domain: misterplan
    1212 * Domain Path: /languages
  • misterplan/trunk/readme.txt

    r3324091 r3330085  
    22Tags: misterplan, motor de reservas, booking engines, alojamientos, actividades
    33Requires at least: 5.2
    4 Tested up to: 6.8.1
     4Tested up to: 6.8.2
    55Requires PHP: 7.2.5
    6 Stable tag: 1.1.43
     6Stable tag: 1.1.44
    77License: GPLv2 or later
    88Contributors: jorgealonso
     
    117117
    118118= 1.1.43 =
     119
    119120* Add strict search by pax in accommodation booking engine
    120121* Tested compatibility with Wordpress 6.8.1
     122
     123= 1.1.44
     124* Minor fixes (Show localization selector)
     125* Tested compatibility with Wordpress 6.8.2
    121126
    122127== Screenshots ==
  • misterplan/trunk/templates_php/admin/motor/tipo_3.php

    r3109292 r3330085  
    139139                        <div><?php echo esc_html__('Search automatically on start-up', 'misterplan'); ?></div>
    140140                        <select name="autosearch">
    141                             <option value="0" <?php if(isset($motor->datos->disableUbicacion) && $motor->datos->autosearch==0) echo esc_attr('selected'); ?>><?php echo esc_html__('No', 'misterplan'); ?></option>
    142                             <option value="1" <?php if(isset($motor->datos->disableUbicacion) && $motor->datos->autosearch==1) echo esc_attr('selected'); ?>><?php echo esc_html__('Yes', 'misterplan'); ?></option>
     141                            <option value="0" <?php if(isset($motor->datos->autosearch) && $motor->datos->autosearch==0) echo esc_attr('selected'); ?>><?php echo esc_html__('No', 'misterplan'); ?></option>
     142                            <option value="1" <?php if(isset($motor->datos->autosearch) && $motor->datos->autosearch==1) echo esc_attr('selected'); ?>><?php echo esc_html__('Yes', 'misterplan'); ?></option>
    143143                        </select>
    144144                    </label>
Note: See TracChangeset for help on using the changeset viewer.