Plugin Directory

Changeset 3420643


Ignore:
Timestamp:
12/16/2025 04:17:08 AM (2 months ago)
Author:
rilwis
Message:

Update to version 2.7.2 from GitHub

Location:
auto-listings
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • auto-listings/tags/2.7.2/auto-listings.php

    r3412848 r3420643  
    66 * Author URI:       https://wpautolistings.com
    77 * Plugin URI:       https://wpautolistings.com
    8  * Version:          2.7.1
     8 * Version:          2.7.2
    99 * Text Domain:      auto-listings
    1010 * License:          GPLv3
  • auto-listings/tags/2.7.2/readme.txt

    r3412848 r3420643  
    44Requires at least: 6.2
    55Tested up to:      6.9
    6 Stable tag:        2.7.1
     6Stable tag:        2.7.2
    77Requires PHP:      7.2
    88License:           GPLv3
     
    133133== Changelog ==
    134134
     135= 2.7.2 - 2025-12-16 =
     136- Fix cross site scripting
     137
    135138= 2.7.1 - 2025-12-06 =
    136139- Update carquery
  • auto-listings/tags/2.7.2/src/Plugin.php

    r3412848 r3420643  
    4141        define( 'AUTO_LISTINGS_URL', plugin_dir_url( $this->file ) );
    4242        define( 'AUTO_LISTINGS_BASENAME', plugin_basename( $this->file ) );
    43         define( 'AUTO_LISTINGS_VERSION', '2.7.1' );
     43        define( 'AUTO_LISTINGS_VERSION', '2.7.2' );
    4444        define( 'AUTO_LISTINGS_DB_VERSION', '2' );
    4545    }
  • auto-listings/tags/2.7.2/src/SearchForm/Shortcode/Extras.php

    r3190866 r3420643  
    3939        );
    4040
    41         $label = $atts['label'] ? '<label class="als-field__label" for="' . esc_attr( $id ) . '">' . $atts['label'] . '</label>' : '';
     41        $label = $atts['label'] ? '<label class="als-field__label" for="' . esc_attr( $id ) . '">' . esc_attr( $atts['label'] ) . '</label>' : '';
    4242
    4343        $output  = '<div class="als-field als-field--keyword ">';
  • auto-listings/trunk/auto-listings.php

    r3412848 r3420643  
    66 * Author URI:       https://wpautolistings.com
    77 * Plugin URI:       https://wpautolistings.com
    8  * Version:          2.7.1
     8 * Version:          2.7.2
    99 * Text Domain:      auto-listings
    1010 * License:          GPLv3
  • auto-listings/trunk/readme.txt

    r3412848 r3420643  
    44Requires at least: 6.2
    55Tested up to:      6.9
    6 Stable tag:        2.7.1
     6Stable tag:        2.7.2
    77Requires PHP:      7.2
    88License:           GPLv3
     
    133133== Changelog ==
    134134
     135= 2.7.2 - 2025-12-16 =
     136- Fix cross site scripting
     137
    135138= 2.7.1 - 2025-12-06 =
    136139- Update carquery
  • auto-listings/trunk/src/Plugin.php

    r3412848 r3420643  
    4141        define( 'AUTO_LISTINGS_URL', plugin_dir_url( $this->file ) );
    4242        define( 'AUTO_LISTINGS_BASENAME', plugin_basename( $this->file ) );
    43         define( 'AUTO_LISTINGS_VERSION', '2.7.1' );
     43        define( 'AUTO_LISTINGS_VERSION', '2.7.2' );
    4444        define( 'AUTO_LISTINGS_DB_VERSION', '2' );
    4545    }
  • auto-listings/trunk/src/SearchForm/Shortcode/Extras.php

    r3190866 r3420643  
    3939        );
    4040
    41         $label = $atts['label'] ? '<label class="als-field__label" for="' . esc_attr( $id ) . '">' . $atts['label'] . '</label>' : '';
     41        $label = $atts['label'] ? '<label class="als-field__label" for="' . esc_attr( $id ) . '">' . esc_attr( $atts['label'] ) . '</label>' : '';
    4242
    4343        $output  = '<div class="als-field als-field--keyword ">';
Note: See TracChangeset for help on using the changeset viewer.