Plugin Directory

Changeset 2281734


Ignore:
Timestamp:
04/12/2020 07:32:43 AM (6 years ago)
Author:
mnmlthms
Message:

update v1.3.2

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

Legend:

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

    r2269604 r2281734  
    156156         * Make items
    157157         * @since 1.0.2
    158          * @version 1.2
     158         * @version 1.2.1
    159159         */
    160160        static function make_items( $media_array = array(), $args = array() ){
     
    166166            }
    167167
     168            if( empty( $media_array ) )
     169                return;
     170
    168171            foreach ( $media_array as $item ) {
     172                $item = wp_parse_args( $item, array(
     173                    'url' => '',
     174                    'type' => '',
     175                    'description' => '',
     176                    'time' => '',
     177                    'comments' => '',
     178                    'likes' => '',
     179                    'thumbnail' => '',
     180                    'xsmall' => '',
     181                    'small' => '',
     182                    'medium' => '',
     183                    'large' => '',
     184                    'original' => '',
     185
     186                ) );
    169187                include( $use_template );
    170188            }
  • wp-my-instagram/trunk/langs/wp-my-instagram.pot

    r2268880 r2281734  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Instant Feeds 1.3.0\n"
     5"Project-Id-Version: WP Instant Feeds 1.3.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-my-instagram\n"
    7 "POT-Creation-Date: 2020-03-27 07:14:58+00:00\n"
     7"POT-Creation-Date: 2020-04-11 08:43:59+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    1313"Language-Team: LANGUAGE <LL@li.org>\n"
    1414
    15 #: inc/public/main.php:122
     15#: inc/public/main.php:124
    1616msgid "You need to input your username or hashtag."
    1717msgstr ""
    1818
    19 #: inc/public/main.php:220
     19#: inc/public/main.php:240
    2020msgid "Unable to communicate with Instagram."
    2121msgstr ""
    2222
    23 #: inc/public/main.php:223
     23#: inc/public/main.php:243
    2424msgid "Instagram did not return a 200."
    2525msgstr ""
    2626
    27 #: inc/public/main.php:231 inc/public/main.php:254 inc/public/main.php:258
     27#: inc/public/main.php:251 inc/public/main.php:274 inc/public/main.php:278
    2828msgid "Instagram has returned invalid data."
    2929msgstr ""
    3030
    31 #: inc/public/main.php:371
     31#: inc/public/main.php:399
    3232msgid "Instagram did not return any images."
    3333msgstr ""
    3434
    35 #: inc/public/main.php:382
    36 msgid "This param must be array."
     35#: inc/public/main.php:410
     36msgid "This param must be an array."
    3737msgstr ""
    3838
  • wp-my-instagram/trunk/readme.txt

    r2269600 r2281734  
    44Tags: instagram, widget
    55Requires at least: 3.9
    6 Tested up to: 5.3.3
    7 Stable tag: 1.3.1
     6Tested up to: 5.4.x
     7Stable tag: 1.3.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6464
    6565== Changelog ==
     66
     67= 1.3.2 - Apr 12 2020 =
     68* improvements
    6669
    6770= 1.3.1 - Mar 27 2020 =
Note: See TracChangeset for help on using the changeset viewer.