Changeset 3418060
- Timestamp:
- 12/12/2025 09:30:39 AM (44 hours ago)
- Location:
- wp-google-map-plugin/trunk
- Files:
-
- 1 added
- 2 edited
-
classes/wpgmp-security.php (added)
-
readme.txt (modified) (3 diffs)
-
wp-google-map-plugin.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-google-map-plugin/trunk/readme.txt
r3405282 r3418060 7 7 Author: flippercode 8 8 Requires at least: 3.4 9 Tested up to: 6. 810 Stable tag: 4.8. 79 Tested up to: 6.9 10 Stable tag: 4.8.8 11 11 Requires PHP: 5.3 12 12 License: GPLv2 or later … … 233 233 == Changelog == 234 234 235 = 4.8.8 = 236 * Fix : Reported security issue related to shortcode attribute fixed. 237 235 238 = 4.8.7 = 236 239 * Fix : Reported security issue related to file control fixed. … … 315 318 316 319 == Upgrade Notice == 320 321 = 4.8.8 = 322 – Upgrade for more stable release. 317 323 318 324 = 4.8.7 = -
wp-google-map-plugin/trunk/wp-google-map-plugin.php
r3405282 r3418060 6 6 * Author: WePlugins 7 7 * Author URI: https://weplugins.com/ 8 * License: GPL v2 or later9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html10 * Version: 4.8. 78 * License: GPL v2 or later 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 * Version: 4.8.8 11 11 * Text Domain: wp-google-map-plugin 12 12 * Domain Path: /lang … … 540 540 541 541 function wpgmp_frontend_scripts() { WPGMP_Helper::wpgmp_register_map_frontend_resources(); } 542 542 543 /** 543 544 * Display map at the frontend using put_wpgmp shortcode. … … 546 547 * @param string $content Content. 547 548 */ 549 548 550 function wpgmp_show_location_in_map( $atts, $content = null ) { 549 551 552 $sanitized_atts = WPGMP_Security::wpgmp_sanitize_shortcode_atts( $atts ); 550 553 try { 551 554 $factoryObject = new WPGMP_Controller(); 552 555 $viewObject = $factoryObject->create_object( 'shortcode' ); 553 $output = $viewObject->display( 'put-wpgmp', $ atts );554 return $output;555 556 $output = $viewObject->display( 'put-wpgmp', $sanitized_atts ); 557 return $output; 558 556 559 } catch ( Exception $e ) { 557 echo wp_kses_post( WPGMP_Template::show_message( array( 'error' => $e->getMessage() ) ) ); 558 559 } 560 561 } 562 560 return wp_kses_post( WPGMP_Template::show_message( array( 'error' => $e->getMessage() ) ) ); 561 } 562 } 563 563 564 /** 564 565 * Ajax Call … … 1327 1328 if ( is_admin() ) 1328 1329 $this->wpgmp_define( 'WPGMP_SLUG', 'wpgmp_view_overview' ); 1329 $this->wpgmp_define( 'WPGMP_VERSION', '4.8. 7' );1330 $this->wpgmp_define( 'WPGMP_VERSION', '4.8.8' ); 1330 1331 $this->wpgmp_define( 'WPGMP_FOLDER', basename( dirname( __FILE__ ) ) ); 1331 1332 $this->wpgmp_define( 'WPGMP_DIR', plugin_dir_path( __FILE__ ) ); … … 1364 1365 // Load Plugin Files 1365 1366 $plugin_files_to_include = array( 1367 'wpgmp-security.php', 1366 1368 'wpgmp-pro-feature-ui.php', 1367 1369 'wpgmp-integration-form.php',
Note: See TracChangeset
for help on using the changeset viewer.