Plugin Directory

Changeset 3301459


Ignore:
Timestamp:
05/27/2025 11:52:57 AM (8 months ago)
Author:
tijmensmit
Message:

Permalink fix.

Location:
wp-store-locator/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-store-locator/trunk/readme.txt

    r3300671 r3301459  
    55Requires at least: 3.7
    66Tested up to: 6.8.1
    7 Stable tag: 2.2.252
     7Stable tag: 2.2.253
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    127127== Changelog ==
    128128
     129= 2.2.253
     130* Fixed: Permalinks stopped working after the last update, sorry :(
     131
    129132= 2.2.252
    130133* Changed: Adjusted the loading order of the translations to prevent the 'Function _load_textdomain_just_in_time was called incorrectly' notice from appearing.     
    131134
    132135= 2.2.251
    133 * Fixed: Security issue ( Stored XSS vulnerability ) in the translation strings. Thanks to [cleantalk](https://cleantalk.org/) for reporting this.
     136* Fixed: HTML security issues ( Stored XSS vulnerability ) in the translation strings. Thanks to [cleantalk](https://cleantalk.org/) for reporting this.
    134137
    135138= 2.2.250
  • wp-store-locator/trunk/wp-store-locator.php

    r3300671 r3301459  
    55Author: Tijmen Smit
    66Author URI: https://wpstorelocator.co/
    7 Version: 2.2.252
     7Version: 2.2.253
    88Text Domain: wpsl
    99Domain Path: /languages/
     
    7575            $this->includes();
    7676
     77            add_action( 'init', array( $this, 'plugin_settings' ) );
     78
    7779            // Load classes
    7880            $this->post_types = new WPSL_Post_Types();
     
    8183            $this->templates  = new WPSL_Templates();
    8284
    83             add_action( 'init', array( $this, 'plugin_settings' ) );
    84                        
    8585            register_activation_hook( __FILE__, array( $this, 'install' ) );
    8686        }
     
    9595
    9696            if ( !defined( 'WPSL_VERSION_NUM' ) )
    97                 define( 'WPSL_VERSION_NUM', '2.2.251' );
     97                define( 'WPSL_VERSION_NUM', '2.2.253' );
    9898
    9999            if ( !defined( 'WPSL_URL' ) )
Note: See TracChangeset for help on using the changeset viewer.