Plugin Directory

Changeset 1803459


Ignore:
Timestamp:
01/15/2018 08:42:04 PM (8 years ago)
Author:
WPGMaps
Message:

6.4.09

  • Removed the plugin deactivation survey as there are PHP compatibility issues. Will have to retest and add this back at a later stage.
Location:
wp-google-maps
Files:
221 added
1 deleted
2 edited

Legend:

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

    r1802622 r1803459  
    215215== Changelog ==
    216216
     217= 6.4.09 - 2018-01-15 - Medium priority =
     218* Removed the plugin deactivation survey as there are PHP compatibility issues. Will have to retest and add this back at a later stage.
     219
    217220= 6.4.08 - 2018-01-14 - Medium priority =
    218221* Update Google Maps API versions to include 3.30 and 3.31
  • wp-google-maps/trunk/wpGoogleMaps.php

    r1802622 r1803459  
    44Plugin URI: https://www.wpgmaps.com
    55Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
    6 Version: 6.4.08
     6Version: 6.4.09
    77Author: WP Google Maps
    88Author URI: https://www.wpgmaps.com
     
    1313/*
    1414 *
     15 * 6.4.09 - 2018-01-15 - Medium priority
     16 * Removed the plugin deactivation survey as there are PHP compatibility issues. Will have to retest and add this back at a later stage.
     17 *
    1518 * 6.4.08 - 2018-01-14 - Medium priority
    1619 * Update Google Maps API versions to include 3.30 and 3.31
     
    347350$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
    348351$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
    349 $wpgmza_version = "6.4.08";
     352$wpgmza_version = "6.4.09";
    350353$wpgmza_p_version = "6.19";
    351354$wpgmza_t = "basic";
     
    358361include ( "base/includes/deprecated.php" );
    359362
    360 /* plugin deactivation checks */
    361 include ( "lib/codecabin/deactivate-feedback-form.php" );
    362 add_filter( 'codecabin_deactivate_feedback_form_plugins', 'wpgmaps_deactivation_survey_t' );
    363 function wpgmaps_deactivation_survey_t( $plugins ) {
    364     global $wpgmza_version;
    365     $plugins[] = (object)array(
    366         'slug'      => 'wp-google-maps',
    367         'version'   => WPGMAPS
    368     );
    369 
    370     return $plugins;
    371 }
    372363
    373364
Note: See TracChangeset for help on using the changeset viewer.