Plugin Directory

Changeset 3418060


Ignore:
Timestamp:
12/12/2025 09:30:39 AM (44 hours ago)
Author:
flippercode
Message:

Updated trunk for version 1.2.0

Location:
wp-google-map-plugin/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-google-map-plugin/trunk/readme.txt

    r3405282 r3418060  
    77Author:            flippercode
    88Requires at least: 3.4
    9 Tested up to: 6.8
    10 Stable tag: 4.8.7
     9Tested up to: 6.9
     10Stable tag: 4.8.8
    1111Requires PHP: 5.3
    1212License: GPLv2 or later
     
    233233== Changelog ==
    234234
     235= 4.8.8 =
     236* Fix : Reported security issue related to shortcode attribute fixed.
     237
    235238= 4.8.7 =
    236239* Fix : Reported security issue related to file control fixed.
     
    315318
    316319== Upgrade Notice ==
     320
     321= 4.8.8 =
     322– Upgrade for more stable release.
    317323
    318324= 4.8.7 =
  • wp-google-map-plugin/trunk/wp-google-map-plugin.php

    r3405282 r3418060  
    66 * Author: WePlugins
    77 * Author URI: https://weplugins.com/
    8  * License:           GPL v2 or later
    9  * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
    10  * Version: 4.8.7
     8 * License: GPL v2 or later
     9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
     10 * Version: 4.8.8
    1111 * Text Domain: wp-google-map-plugin
    1212 * Domain Path: /lang
     
    540540       
    541541        function wpgmp_frontend_scripts() {  WPGMP_Helper::wpgmp_register_map_frontend_resources();  }
     542       
    542543        /**
    543544         * Display map at the frontend using put_wpgmp shortcode.
     
    546547         * @param  string $content Content.
    547548         */
     549
    548550        function wpgmp_show_location_in_map( $atts, $content = null ) {
    549 
     551   
     552            $sanitized_atts = WPGMP_Security::wpgmp_sanitize_shortcode_atts( $atts );
    550553            try {
    551554                $factoryObject = new WPGMP_Controller();
    552555                $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               
    556559            } 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
    563564        /**
    564565         * Ajax Call
     
    13271328            if ( is_admin() )
    13281329            $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' );
    13301331            $this->wpgmp_define( 'WPGMP_FOLDER', basename( dirname( __FILE__ ) ) );
    13311332            $this->wpgmp_define( 'WPGMP_DIR', plugin_dir_path( __FILE__ ) );
     
    13641365            // Load Plugin Files
    13651366            $plugin_files_to_include = array(
     1367                'wpgmp-security.php',
    13661368                'wpgmp-pro-feature-ui.php',
    13671369                'wpgmp-integration-form.php',
Note: See TracChangeset for help on using the changeset viewer.