Changeset 3300671
- Timestamp:
- 05/26/2025 12:18:48 PM (8 months ago)
- Location:
- wp-store-locator/trunk
- Files:
-
- 3 edited
-
inc/class-i18n.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-store-locator.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-store-locator/trunk/inc/class-i18n.php
r3272210 r3300671 21 21 */ 22 22 function __construct() { 23 add_action( ' plugins_loaded', array( $this, 'load_plugin_textdomain' ) );23 add_action( 'init', array( $this, 'load_plugin_textdomain' ) ); 24 24 } 25 25 -
wp-store-locator/trunk/readme.txt
r3286114 r3300671 5 5 Requires at least: 3.7 6 6 Tested up to: 6.8.1 7 Stable tag: 2.2.25 17 Stable tag: 2.2.252 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 127 127 == Changelog == 128 128 129 = 2.2.252 130 * Changed: Adjusted the loading order of the translations to prevent the 'Function _load_textdomain_just_in_time was called incorrectly' notice from appearing. 131 129 132 = 2.2.251 130 133 * Fixed: Security issue ( Stored XSS vulnerability ) in the translation strings. Thanks to [cleantalk](https://cleantalk.org/) for reporting this. -
wp-store-locator/trunk/wp-store-locator.php
r3272210 r3300671 5 5 Author: Tijmen Smit 6 6 Author URI: https://wpstorelocator.co/ 7 Version: 2.2.25 17 Version: 2.2.252 8 8 Text Domain: wpsl 9 9 Domain Path: /languages/ … … 74 74 $this->define_constants(); 75 75 $this->includes(); 76 $this->plugin_settings();77 76 78 77 // Load classes … … 81 80 $this->frontend = new WPSL_Frontend(); 82 81 $this->templates = new WPSL_Templates(); 82 83 add_action( 'init', array( $this, 'plugin_settings' ) ); 83 84 84 85 register_activation_hook( __FILE__, array( $this, 'install' ) );
Note: See TracChangeset
for help on using the changeset viewer.