Plugin Directory

Changeset 2118497


Ignore:
Timestamp:
07/06/2019 08:11:27 AM (7 years ago)
Author:
poglaa
Message:

tagging version 1.0.1

Location:
personalized-shortcode-pro
Files:
4 edited
15 copied

Legend:

Unmodified
Added
Removed
  • personalized-shortcode-pro/tags/1.0.1/README.txt

    r2115993 r2118497  
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     9Stable tag: 1.0.1
    910
    1011Shortcodes with all the visitor's info that we can get (country, IP, country phone code, country flag emoji, city...).
     
    5051If you want a certain feature to be added, please add issue to [Github repository](https://github.com/pogla/personalized-shortcode-pro/issues).
    5152
     53= 1.0.1 =
     54Fix notice
     55
    5256= 1.0 =
    5357Initial release
  • personalized-shortcode-pro/tags/1.0.1/personalized-shortcode-pro.php

    r2115996 r2118497  
    1010 * Plugin URI:        https://maticpogladic.com/personalized-shortcode-pro/
    1111 * Description:       Plugin enables you to use data from user in shortcodes.
    12  * Version:           1.0
     12 * Version:           1.0.1
    1313 * Author:            Matic Pogladič
    1414 * Author URI:        https://maticpogladic.com
     
    2828 * SemVer - https://semver.org
    2929 */
    30 define( 'PSP_VERSION', '1.0' );
     30define( 'PSP_VERSION', '1.0.1' );
    3131define( 'PSP_PREFIX', 'psp_' );
    3232define( 'PSP_NAME', 'Personalized Shortcode Pro' );
  • personalized-shortcode-pro/tags/1.0.1/public/class-personalized-shortcode-pro-public.php

    r2115993 r2118497  
    521521    public static function get_user_ip() {
    522522
    523         $debug_ip = sanitize_text_field( $_GET['psp_debug_ip'] );
     523        $debug_ip = isset( $_GET['psp_debug_ip'] ) ? sanitize_text_field( $_GET['psp_debug_ip'] ) : false;
    524524
    525525        if ( $debug_ip ) {
  • personalized-shortcode-pro/trunk/README.txt

    r2115993 r2118497  
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     9Stable tag: 1.0.1
    910
    1011Shortcodes with all the visitor's info that we can get (country, IP, country phone code, country flag emoji, city...).
     
    5051If you want a certain feature to be added, please add issue to [Github repository](https://github.com/pogla/personalized-shortcode-pro/issues).
    5152
     53= 1.0.1 =
     54Fix notice
     55
    5256= 1.0 =
    5357Initial release
  • personalized-shortcode-pro/trunk/personalized-shortcode-pro.php

    r2115996 r2118497  
    1010 * Plugin URI:        https://maticpogladic.com/personalized-shortcode-pro/
    1111 * Description:       Plugin enables you to use data from user in shortcodes.
    12  * Version:           1.0
     12 * Version:           1.0.1
    1313 * Author:            Matic Pogladič
    1414 * Author URI:        https://maticpogladic.com
     
    2828 * SemVer - https://semver.org
    2929 */
    30 define( 'PSP_VERSION', '1.0' );
     30define( 'PSP_VERSION', '1.0.1' );
    3131define( 'PSP_PREFIX', 'psp_' );
    3232define( 'PSP_NAME', 'Personalized Shortcode Pro' );
  • personalized-shortcode-pro/trunk/public/class-personalized-shortcode-pro-public.php

    r2115993 r2118497  
    521521    public static function get_user_ip() {
    522522
    523         $debug_ip = sanitize_text_field( $_GET['psp_debug_ip'] );
     523        $debug_ip = isset( $_GET['psp_debug_ip'] ) ? sanitize_text_field( $_GET['psp_debug_ip'] ) : false;
    524524
    525525        if ( $debug_ip ) {
Note: See TracChangeset for help on using the changeset viewer.