Changeset 2556541
- Timestamp:
- 06/30/2021 04:11:28 PM (5 years ago)
- Location:
- flockler
- Files:
-
- 2 edited
- 4 copied
-
tags/1.0.2 (copied) (copied from flockler/trunk)
-
tags/1.0.2/LICENSE (copied) (copied from flockler/trunk/LICENSE)
-
tags/1.0.2/flockler.php (copied) (copied from flockler/trunk/flockler.php) (4 diffs)
-
tags/1.0.2/readme.txt (copied) (copied from flockler/trunk/readme.txt) (2 diffs)
-
trunk/flockler.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flockler/tags/1.0.2/flockler.php
r2547963 r2556541 3 3 /** 4 4 * @link https://flockler.com 5 * @since 1.0. 15 * @since 1.0.2 6 6 * @package Flockler 7 7 * … … 10 10 * Plugin URI: https://github.com/flockler/flockler-wordress-plugin 11 11 * 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. 112 * Version: 1.0.2 13 13 * Author: Flockler 14 14 * Author URI: http://flockler.com/ … … 21 21 } 22 22 23 define( 'FLOCKLER_VERSION', '1.0. 1' );23 define( 'FLOCKLER_VERSION', '1.0.2' ); 24 24 25 25 add_shortcode( 'flockler', 'flockler_inject_html' ); … … 61 61 $embed_uuid = esc_attr( $atts['embed_uuid'] ); 62 62 63 if ( $atts['iframe'] === 'true') {63 if (isset( $atts['iframe'] ) && $atts['iframe'] === 'true') { 64 64 return flockler_html_for_iframe_embed_code($site_uuid, $embed_uuid); 65 65 } else { -
flockler/tags/1.0.2/readme.txt
r2547963 r2556541 6 6 Requires at least: 4.4 7 7 Tested up to: 5.7 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 120 120 == Changelog == 121 121 122 = 1.0.2 = 123 * Update syntax 124 122 125 = 1.0.1 = 123 126 * Update HEREDOC syntax -
flockler/trunk/flockler.php
r2547963 r2556541 3 3 /** 4 4 * @link https://flockler.com 5 * @since 1.0. 15 * @since 1.0.2 6 6 * @package Flockler 7 7 * … … 10 10 * Plugin URI: https://github.com/flockler/flockler-wordress-plugin 11 11 * 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. 112 * Version: 1.0.2 13 13 * Author: Flockler 14 14 * Author URI: http://flockler.com/ … … 21 21 } 22 22 23 define( 'FLOCKLER_VERSION', '1.0. 1' );23 define( 'FLOCKLER_VERSION', '1.0.2' ); 24 24 25 25 add_shortcode( 'flockler', 'flockler_inject_html' ); … … 61 61 $embed_uuid = esc_attr( $atts['embed_uuid'] ); 62 62 63 if ( $atts['iframe'] === 'true') {63 if (isset( $atts['iframe'] ) && $atts['iframe'] === 'true') { 64 64 return flockler_html_for_iframe_embed_code($site_uuid, $embed_uuid); 65 65 } else { -
flockler/trunk/readme.txt
r2547963 r2556541 6 6 Requires at least: 4.4 7 7 Tested up to: 5.7 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 120 120 == Changelog == 121 121 122 = 1.0.2 = 123 * Update syntax 124 122 125 = 1.0.1 = 123 126 * Update HEREDOC syntax
Note: See TracChangeset
for help on using the changeset viewer.