Changeset 3282341
- Timestamp:
- 04/26/2025 09:34:26 AM (11 months ago)
- Location:
- wp-google-map-plugin/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-google-map-plugin.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-google-map-plugin/trunk/readme.txt
r3270159 r3282341 7 7 Requires at least: 3.4 8 8 Tested up to: 6.7.2 9 Stable tag: 4.7. 29 Stable tag: 4.7.3 10 10 Requires PHP: 5.3 11 11 License: GPLv2 or later … … 170 170 == Changelog == 171 171 172 = 4.7.3 = 173 * Add : Fixed the _load_textdomain_just_in_time issue. 174 * Add : Fixed the headers already sent issue. 175 172 176 = 4.7.2 = 173 177 * Add : Fixed the security issues related to map controls. -
wp-google-map-plugin/trunk/wp-google-map-plugin.php
r3270159 r3282341 6 6 Author: flippercode 7 7 Author URI: https://weplugins.com/ 8 Version: 4.7. 28 Version: 4.7.3 9 9 Text Domain: wp-google-map-plugin 10 10 Domain Path: /lang … … 78 78 add_action('wp_ajax_nopriv_wpgmp_submit_uninstall_reason_action', array($this, 'wpgmp_submit_uninstall_reason_action')); 79 79 } 80 81 if ( ! defined( 'WPGMP_PREMIUM_LINK' ) ) 82 define( 'WPGMP_PREMIUM_LINK', '<a href="javascript:void(0);" class="get_pro">'.esc_html__('PRO', 'wp-google-map-plugin').'</a>' ); 80 83 81 84 } … … 831 834 if ( isset($tables) && !empty($tables) && is_array( $tables ) ) { 832 835 foreach ( $tables as $i => $sql ) { 833 dbDelta( $sql ); 836 if( !empty( $sql ) ){ 837 dbDelta( $sql ); 838 } 834 839 } 835 840 } … … 854 859 855 860 if ( ! defined( 'WPGMP_VERSION' ) ) 856 define( 'WPGMP_VERSION', '4.7. 2' );861 define( 'WPGMP_VERSION', '4.7.3' ); 857 862 858 863 if ( ! defined( 'WPGMP_FOLDER' ) ) … … 918 923 if ( ! defined( 'WPGMP_PRO_IMAGES' ) ) 919 924 define( 'WPGMP_PRO_IMAGES', WPGMP_URL.'assets/images/pro/' ); 920 921 if ( ! defined( 'WPGMP_PREMIUM_LINK' ) )922 define( 'WPGMP_PREMIUM_LINK', '<a href="javascript:void(0);" class="get_pro">'.esc_html__('PRO', 'wp-google-map-plugin').'</a>' );923 925 924 926 }
Note: See TracChangeset
for help on using the changeset viewer.