Changeset 2294912
- Timestamp:
- 04/30/2020 12:57:01 AM (6 years ago)
- Location:
- wp-my-instagram
- Files:
-
- 24 added
- 4 edited
-
tags/1.3.3 (added)
-
tags/1.3.3/css (added)
-
tags/1.3.3/css/.sassbuilder-config.json (added)
-
tags/1.3.3/css/style.css (added)
-
tags/1.3.3/css/style.css.map (added)
-
tags/1.3.3/css/style.min.css (added)
-
tags/1.3.3/css/style.scss (added)
-
tags/1.3.3/inc (added)
-
tags/1.3.3/inc/public (added)
-
tags/1.3.3/inc/public/main.php (added)
-
tags/1.3.3/inc/public/shortcode.php (added)
-
tags/1.3.3/inc/public/widget.php (added)
-
tags/1.3.3/inc/templates (added)
-
tags/1.3.3/inc/templates/item.php (added)
-
tags/1.3.3/index.php (added)
-
tags/1.3.3/js (added)
-
tags/1.3.3/js/script.js (added)
-
tags/1.3.3/js/script.min.js (added)
-
tags/1.3.3/langs (added)
-
tags/1.3.3/langs/wp-my-instagram.pot (added)
-
tags/1.3.3/license.txt (added)
-
tags/1.3.3/readme.txt (added)
-
tags/1.3.3/task.txt (added)
-
tags/1.3.3/wp-my-instagram.php (added)
-
trunk/inc/public/main.php (modified) (1 diff)
-
trunk/inc/public/widget.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-my-instagram.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-my-instagram/trunk/inc/public/main.php
r2281734 r2294912 408 408 409 409 if( !is_array( $feed ) ){ 410 unserialize( base64_decode( $feed ) ); 411 } 412 410 $feed = unserialize( base64_decode( $feed ) ); 411 412 } 413 413 414 return $feed; 414 415 -
wp-my-instagram/trunk/inc/public/widget.php
r2000806 r2294912 12 12 parent::__construct( 13 13 'wp_my_instagram', 14 esc_html__( 'WP My Instagram', 'wp-my-instagram' ),14 esc_html__( 'WP Instant Feeds', 'wp-my-instagram' ), 15 15 16 16 array( … … 159 159 } 160 160 161 if( $new_instance['preload']){161 if( !empty( $new_instance['preload'] ) ){ 162 162 $username = $instance['username']; 163 163 $hashtag = $instance['hashtag']; -
wp-my-instagram/trunk/readme.txt
r2281734 r2294912 64 64 65 65 == Changelog == 66 67 = 1.3.3 - Apr 29 2020 = 68 * Bug fix 66 69 67 70 = 1.3.2 - Apr 12 2020 = -
wp-my-instagram/trunk/wp-my-instagram.php
r2283732 r2294912 4 4 Plugin URI: https://wordpress.org/plugins/wp-my-instagram 5 5 Description: Display Instagram feeds on your site from your Instagram account 6 Version: 1.3. 26 Version: 1.3.3 7 7 Author: mnmlthms 8 8 Author URI: http://mnmlthms.com … … 29 29 if ( ! defined( 'ABSPATH' ) ) exit; 30 30 31 define( 'WP_MY_INSTAGRAM_VERSION', '1.3. 2' );31 define( 'WP_MY_INSTAGRAM_VERSION', '1.3.3' ); 32 32 define( 'WP_MY_INSTAGRAM_OPTION', 'wp_my_instagram' ); 33 33
Note: See TracChangeset
for help on using the changeset viewer.