Changeset 3301459
- Timestamp:
- 05/27/2025 11:52:57 AM (8 months ago)
- Location:
- wp-store-locator/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-store-locator.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-store-locator/trunk/readme.txt
r3300671 r3301459 5 5 Requires at least: 3.7 6 6 Tested up to: 6.8.1 7 Stable tag: 2.2.25 27 Stable tag: 2.2.253 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 127 127 == Changelog == 128 128 129 = 2.2.253 130 * Fixed: Permalinks stopped working after the last update, sorry :( 131 129 132 = 2.2.252 130 133 * Changed: Adjusted the loading order of the translations to prevent the 'Function _load_textdomain_just_in_time was called incorrectly' notice from appearing. 131 134 132 135 = 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. 134 137 135 138 = 2.2.250 -
wp-store-locator/trunk/wp-store-locator.php
r3300671 r3301459 5 5 Author: Tijmen Smit 6 6 Author URI: https://wpstorelocator.co/ 7 Version: 2.2.25 27 Version: 2.2.253 8 8 Text Domain: wpsl 9 9 Domain Path: /languages/ … … 75 75 $this->includes(); 76 76 77 add_action( 'init', array( $this, 'plugin_settings' ) ); 78 77 79 // Load classes 78 80 $this->post_types = new WPSL_Post_Types(); … … 81 83 $this->templates = new WPSL_Templates(); 82 84 83 add_action( 'init', array( $this, 'plugin_settings' ) );84 85 85 register_activation_hook( __FILE__, array( $this, 'install' ) ); 86 86 } … … 95 95 96 96 if ( !defined( 'WPSL_VERSION_NUM' ) ) 97 define( 'WPSL_VERSION_NUM', '2.2.25 1' );97 define( 'WPSL_VERSION_NUM', '2.2.253' ); 98 98 99 99 if ( !defined( 'WPSL_URL' ) )
Note: See TracChangeset
for help on using the changeset viewer.