Changeset 2118497
- Timestamp:
- 07/06/2019 08:11:27 AM (7 years ago)
- Location:
- personalized-shortcode-pro
- Files:
-
- 4 edited
- 15 copied
-
tags/1.0.1 (copied) (copied from personalized-shortcode-pro/trunk)
-
tags/1.0.1/LICENSE.txt (copied) (copied from personalized-shortcode-pro/trunk/LICENSE.txt)
-
tags/1.0.1/README.md (copied) (copied from personalized-shortcode-pro/trunk/README.md)
-
tags/1.0.1/README.txt (copied) (copied from personalized-shortcode-pro/trunk/README.txt) (2 diffs)
-
tags/1.0.1/admin (copied) (copied from personalized-shortcode-pro/trunk/admin)
-
tags/1.0.1/composer.json (copied) (copied from personalized-shortcode-pro/trunk/composer.json)
-
tags/1.0.1/includes (copied) (copied from personalized-shortcode-pro/trunk/includes)
-
tags/1.0.1/index.php (copied) (copied from personalized-shortcode-pro/trunk/index.php)
-
tags/1.0.1/languages (copied) (copied from personalized-shortcode-pro/trunk/languages)
-
tags/1.0.1/personalized-shortcode-pro.php (copied) (copied from personalized-shortcode-pro/trunk/personalized-shortcode-pro.php) (2 diffs)
-
tags/1.0.1/public (copied) (copied from personalized-shortcode-pro/trunk/public)
-
tags/1.0.1/public/class-personalized-shortcode-pro-public.php (modified) (1 diff)
-
tags/1.0.1/screenshot-1.jpg (copied) (copied from personalized-shortcode-pro/trunk/screenshot-1.jpg)
-
tags/1.0.1/screenshot-2.jpg (copied) (copied from personalized-shortcode-pro/trunk/screenshot-2.jpg)
-
tags/1.0.1/screenshot-3.jpg (copied) (copied from personalized-shortcode-pro/trunk/screenshot-3.jpg)
-
tags/1.0.1/vendor (copied) (copied from personalized-shortcode-pro/trunk/vendor)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/personalized-shortcode-pro.php (modified) (2 diffs)
-
trunk/public/class-personalized-shortcode-pro-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
personalized-shortcode-pro/tags/1.0.1/README.txt
r2115993 r2118497 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 Stable tag: 1.0.1 9 10 10 11 Shortcodes with all the visitor's info that we can get (country, IP, country phone code, country flag emoji, city...). … … 50 51 If you want a certain feature to be added, please add issue to [Github repository](https://github.com/pogla/personalized-shortcode-pro/issues). 51 52 53 = 1.0.1 = 54 Fix notice 55 52 56 = 1.0 = 53 57 Initial release -
personalized-shortcode-pro/tags/1.0.1/personalized-shortcode-pro.php
r2115996 r2118497 10 10 * Plugin URI: https://maticpogladic.com/personalized-shortcode-pro/ 11 11 * Description: Plugin enables you to use data from user in shortcodes. 12 * Version: 1.0 12 * Version: 1.0.1 13 13 * Author: Matic Pogladič 14 14 * Author URI: https://maticpogladic.com … … 28 28 * SemVer - https://semver.org 29 29 */ 30 define( 'PSP_VERSION', '1.0 ' );30 define( 'PSP_VERSION', '1.0.1' ); 31 31 define( 'PSP_PREFIX', 'psp_' ); 32 32 define( 'PSP_NAME', 'Personalized Shortcode Pro' ); -
personalized-shortcode-pro/tags/1.0.1/public/class-personalized-shortcode-pro-public.php
r2115993 r2118497 521 521 public static function get_user_ip() { 522 522 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; 524 524 525 525 if ( $debug_ip ) { -
personalized-shortcode-pro/trunk/README.txt
r2115993 r2118497 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 Stable tag: 1.0.1 9 10 10 11 Shortcodes with all the visitor's info that we can get (country, IP, country phone code, country flag emoji, city...). … … 50 51 If you want a certain feature to be added, please add issue to [Github repository](https://github.com/pogla/personalized-shortcode-pro/issues). 51 52 53 = 1.0.1 = 54 Fix notice 55 52 56 = 1.0 = 53 57 Initial release -
personalized-shortcode-pro/trunk/personalized-shortcode-pro.php
r2115996 r2118497 10 10 * Plugin URI: https://maticpogladic.com/personalized-shortcode-pro/ 11 11 * Description: Plugin enables you to use data from user in shortcodes. 12 * Version: 1.0 12 * Version: 1.0.1 13 13 * Author: Matic Pogladič 14 14 * Author URI: https://maticpogladic.com … … 28 28 * SemVer - https://semver.org 29 29 */ 30 define( 'PSP_VERSION', '1.0 ' );30 define( 'PSP_VERSION', '1.0.1' ); 31 31 define( 'PSP_PREFIX', 'psp_' ); 32 32 define( 'PSP_NAME', 'Personalized Shortcode Pro' ); -
personalized-shortcode-pro/trunk/public/class-personalized-shortcode-pro-public.php
r2115993 r2118497 521 521 public static function get_user_ip() { 522 522 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; 524 524 525 525 if ( $debug_ip ) {
Note: See TracChangeset
for help on using the changeset viewer.