Plugin Directory

Changeset 2294912


Ignore:
Timestamp:
04/30/2020 12:57:01 AM (6 years ago)
Author:
mnmlthms
Message:

update v1.3.3

Location:
wp-my-instagram
Files:
24 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-my-instagram/trunk/inc/public/main.php

    r2281734 r2294912  
    408408
    409409                if( !is_array( $feed ) ){
    410                     unserialize( base64_decode( $feed ) ); 
    411                 }
    412                
     410                    $feed = unserialize( base64_decode( $feed ) );
     411                   
     412                }
     413                           
    413414                return $feed;
    414415
  • wp-my-instagram/trunk/inc/public/widget.php

    r2000806 r2294912  
    1212            parent::__construct(
    1313                'wp_my_instagram',
    14                 esc_html__( 'WP My Instagram', 'wp-my-instagram' ),
     14                esc_html__( 'WP Instant Feeds', 'wp-my-instagram' ),
    1515
    1616                array(
     
    159159            }
    160160
    161             if( $new_instance['preload'] ){
     161            if( !empty( $new_instance['preload'] ) ){
    162162                $username = $instance['username'];
    163163                $hashtag = $instance['hashtag'];
  • wp-my-instagram/trunk/readme.txt

    r2281734 r2294912  
    6464
    6565== Changelog ==
     66
     67= 1.3.3 - Apr 29 2020 =
     68* Bug fix
    6669
    6770= 1.3.2 - Apr 12 2020 =
  • wp-my-instagram/trunk/wp-my-instagram.php

    r2283732 r2294912  
    44Plugin URI: https://wordpress.org/plugins/wp-my-instagram
    55Description: Display Instagram feeds on your site from your Instagram account
    6 Version: 1.3.2
     6Version: 1.3.3
    77Author: mnmlthms
    88Author URI: http://mnmlthms.com
     
    2929if ( ! defined( 'ABSPATH' ) ) exit;
    3030
    31 define( 'WP_MY_INSTAGRAM_VERSION', '1.3.2' );
     31define( 'WP_MY_INSTAGRAM_VERSION', '1.3.3' );
    3232define( 'WP_MY_INSTAGRAM_OPTION', 'wp_my_instagram' );
    3333
Note: See TracChangeset for help on using the changeset viewer.