Plugin Directory

Changeset 3282341


Ignore:
Timestamp:
04/26/2025 09:34:26 AM (11 months ago)
Author:
flippercode
Message:

warning issues fixed

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

Legend:

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

    r3270159 r3282341  
    77Requires at least: 3.4
    88Tested up to: 6.7.2
    9 Stable tag: 4.7.2
     9Stable tag: 4.7.3
    1010Requires PHP: 5.3
    1111License: GPLv2 or later
     
    170170== Changelog ==
    171171
     172= 4.7.3 =
     173* Add : Fixed the _load_textdomain_just_in_time issue.
     174* Add : Fixed the headers already sent issue.
     175
    172176= 4.7.2 =
    173177* Add : Fixed the security issues related to map controls.
  • wp-google-map-plugin/trunk/wp-google-map-plugin.php

    r3270159 r3282341  
    66Author: flippercode
    77Author URI: https://weplugins.com/
    8 Version: 4.7.2
     8Version: 4.7.3
    99Text Domain: wp-google-map-plugin
    1010Domain Path: /lang
     
    7878                add_action('wp_ajax_nopriv_wpgmp_submit_uninstall_reason_action', array($this, 'wpgmp_submit_uninstall_reason_action'));
    7979            }
     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>' );
    8083           
    8184        }
     
    831834            if ( isset($tables) && !empty($tables) && is_array( $tables ) ) {
    832835                foreach ( $tables as $i => $sql ) {
    833                     dbDelta( $sql );
     836                    if( !empty( $sql ) ){
     837                        dbDelta( $sql );
     838                    }           
    834839                }
    835840            }
     
    854859           
    855860            if ( ! defined( 'WPGMP_VERSION' ) )
    856             define( 'WPGMP_VERSION', '4.7.2' );
     861            define( 'WPGMP_VERSION', '4.7.3' );
    857862           
    858863            if ( ! defined( 'WPGMP_FOLDER' ) )
     
    918923            if ( ! defined( 'WPGMP_PRO_IMAGES' ) )
    919924            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>' );
    923925           
    924926        }
Note: See TracChangeset for help on using the changeset viewer.