Plugin Directory

Changeset 2556541


Ignore:
Timestamp:
06/30/2021 04:11:28 PM (5 years ago)
Author:
flockler
Message:

Tag version 1.0.2

Location:
flockler
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • flockler/tags/1.0.2/flockler.php

    r2547963 r2556541  
    33/**
    44 * @link              https://flockler.com
    5  * @since             1.0.1
     5 * @since             1.0.2
    66 * @package           Flockler
    77 *
     
    1010 * Plugin URI:        https://github.com/flockler/flockler-wordress-plugin
    1111 * Description:       Flockler helps marketers and website managers to gather and display social media feeds from Instagram, Facebook, Twitter, YouTube, and more.
    12  * Version:           1.0.1
     12 * Version:           1.0.2
    1313 * Author:            Flockler
    1414 * Author URI:        http://flockler.com/
     
    2121}
    2222
    23 define( 'FLOCKLER_VERSION', '1.0.1' );
     23define( 'FLOCKLER_VERSION', '1.0.2' );
    2424
    2525add_shortcode( 'flockler', 'flockler_inject_html' );
     
    6161  $embed_uuid = esc_attr( $atts['embed_uuid'] );
    6262
    63   if ($atts['iframe'] === 'true') {
     63  if (isset( $atts['iframe'] ) && $atts['iframe'] === 'true') {
    6464    return flockler_html_for_iframe_embed_code($site_uuid, $embed_uuid);
    6565  } else {
  • flockler/tags/1.0.2/readme.txt

    r2547963 r2556541  
    66Requires at least: 4.4
    77Tested up to: 5.7
    8 Stable tag: 1.0.1
     8Stable tag: 1.0.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    120120== Changelog ==
    121121
     122= 1.0.2  =
     123* Update syntax
     124
    122125= 1.0.1 =
    123126* Update HEREDOC syntax
  • flockler/trunk/flockler.php

    r2547963 r2556541  
    33/**
    44 * @link              https://flockler.com
    5  * @since             1.0.1
     5 * @since             1.0.2
    66 * @package           Flockler
    77 *
     
    1010 * Plugin URI:        https://github.com/flockler/flockler-wordress-plugin
    1111 * Description:       Flockler helps marketers and website managers to gather and display social media feeds from Instagram, Facebook, Twitter, YouTube, and more.
    12  * Version:           1.0.1
     12 * Version:           1.0.2
    1313 * Author:            Flockler
    1414 * Author URI:        http://flockler.com/
     
    2121}
    2222
    23 define( 'FLOCKLER_VERSION', '1.0.1' );
     23define( 'FLOCKLER_VERSION', '1.0.2' );
    2424
    2525add_shortcode( 'flockler', 'flockler_inject_html' );
     
    6161  $embed_uuid = esc_attr( $atts['embed_uuid'] );
    6262
    63   if ($atts['iframe'] === 'true') {
     63  if (isset( $atts['iframe'] ) && $atts['iframe'] === 'true') {
    6464    return flockler_html_for_iframe_embed_code($site_uuid, $embed_uuid);
    6565  } else {
  • flockler/trunk/readme.txt

    r2547963 r2556541  
    66Requires at least: 4.4
    77Tested up to: 5.7
    8 Stable tag: 1.0.1
     8Stable tag: 1.0.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    120120== Changelog ==
    121121
     122= 1.0.2  =
     123* Update syntax
     124
    122125= 1.0.1 =
    123126* Update HEREDOC syntax
Note: See TracChangeset for help on using the changeset viewer.