Changeset 3099081 for bb-bootstrap-cards
- Timestamp:
- 06/07/2024 06:25:38 AM (11 months ago)
- Location:
- bb-bootstrap-cards
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.4 (copied) (copied from bb-bootstrap-cards/trunk)
-
tags/1.1.4/bb-bootstrap-cards-module/includes/frontend.php (modified) (3 diffs)
-
tags/1.1.4/bb-bootstrap-cards.php.php (modified) (1 diff)
-
tags/1.1.4/readme.txt (modified) (2 diffs)
-
trunk/bb-bootstrap-cards-module/includes/frontend.php (modified) (3 diffs)
-
trunk/bb-bootstrap-cards.php.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bb-bootstrap-cards/tags/1.1.4/bb-bootstrap-cards-module/includes/frontend.php
r3050900 r3099081 19 19 ?> 20 20 <?php if ( 'yes' == $settings->photo_hyperlink && 'link' == $settings->card_btn_type ) : ?> 21 <a href="<?php echo $settings->link_field; ?>" target="<?php echo $settings->link_target; ?>" itemprop="url">21 <a href="<?php echo esc_url( $settings->link_field ); ?>" target="<?php echo esc_attr( $settings->link_target ); ?>" itemprop="url"> 22 22 <?php endif; ?> 23 23 <?php if ( 'yes' == $settings->photo_hyperlink && 'button' == $settings->card_btn_type ) : ?> 24 <a href="<?php echo $settings->btn_link; ?>" target="<?php echo $settings->btn_link_target; ?>" itemprop="url">24 <a href="<?php echo esc_url( $settings->btn_link ); ?>" target="<?php echo esc_attr( $settings->btn_link_target ); ?>" itemprop="url"> 25 25 <?php endif; ?> 26 <img class="<?php echo $classes; ?>" src="<?php echo $src; ?>" alt="<?php echo $alt; ?>" itemprop="image" <?php echo $attrs; ?> />26 <img class="<?php echo esc_attr( $classes ); ?>" src="<?php echo esc_url( $src ); ?>" alt="<?php echo esc_attr( $alt ); ?>" itemprop="image" <?php echo $attrs; ?> /> 27 27 <?php if ( 'yes' == $settings->photo_hyperlink && 'none' != $settings->card_btn_type ) : ?> 28 28 </a> … … 35 35 <div class="bb_boot_card_block"> 36 36 <!--Title--> 37 <<?php echo $settings->tag; ?> class="bb_boot_card_title"><?php echo $settings->card_title; ?></<?php echo $settings->tag; ?>>37 <<?php echo esc_attr( $settings->tag ); ?> class="bb_boot_card_title"><?php echo esc_html( $settings->card_title ); ?></<?php echo esc_attr( $settings->tag ); ?>> 38 38 <!--/.Title--> 39 39 <!--Text--> … … 45 45 <?php if ( 'link' == $settings->card_btn_type ) { ?> 46 46 <a class="bb_boot_card_link" href="<?php echo esc_url( $settings->link_field ); ?>" target="<?php echo esc_attr( $settings->link_target ); ?>"> 47 <?php echo $settings->card_btn_text; ?>47 <?php echo esc_html( $settings->card_btn_text ); ?> 48 48 </a> 49 49 <?php } elseif ( 'button' == $settings->card_btn_type ) { ?> 50 50 <a class="bb_boot_card_link_button" href="<?php echo esc_url( $settings->btn_link ); ?>" target="<?php echo esc_attr( $settings->btn_link_target ); ?>"> 51 <span class="bb_boot_button"><?php echo $settings->btn_text; ?></span>51 <span class="bb_boot_button"><?php echo esc_html( $settings->btn_text ); ?></span> 52 52 </a> 53 53 <?php } ?> -
bb-bootstrap-cards/tags/1.1.4/bb-bootstrap-cards.php.php
r3050900 r3099081 4 4 * Plugin URI: https://www.brainstormforce.com/ 5 5 * Description: This is a plugin for creating Awesome Bootstrap Card. 6 * Author: Pratik Chaskar7 * Author URI: https:// pratikchaskar.com/6 * Author: Brainstorm Force, Pratik Chaskar 7 * Author URI: https://brainstormforce.com/ 8 8 * Text Domain: bb-bootstrap-cards 9 * Version: 1.1. 39 * Version: 1.1.4 10 10 * 11 11 * @package BB-Bootstrap-Cards -
bb-bootstrap-cards/tags/1.1.4/readme.txt
r3050900 r3099081 1 1 === Cards for Beaver Builder === 2 Contributors: pratikchaskar2 Contributors: brainstormforce, pratikchaskar 3 3 Donate link: https://www.paypal.me/BrainstormForce 4 4 Requires at least: 4.4 5 5 Tags: beaver builder, page builder plugin, bootstrap cards, cards, bootstrap, drag and drop cards, bb bootstrap, Cards for Beaver Builder 6 Stable tag: 1.1. 36 Stable tag: 1.1.4 7 7 Tested up to: 6.5 8 8 License: GPLv2 or later … … 89 89 == Changelog == 90 90 91 = 1.1.4 = 92 This update addressed a security bug. Props to Wordfence for privately reporting it privately to our team. Please make sure you are using the latest version on your website. 93 91 94 = 1.1.3 = 92 95 * Security Fix: Hardened the security of the plugin. Props: Wordfence. -
bb-bootstrap-cards/trunk/bb-bootstrap-cards-module/includes/frontend.php
r3050900 r3099081 19 19 ?> 20 20 <?php if ( 'yes' == $settings->photo_hyperlink && 'link' == $settings->card_btn_type ) : ?> 21 <a href="<?php echo $settings->link_field; ?>" target="<?php echo $settings->link_target; ?>" itemprop="url">21 <a href="<?php echo esc_url( $settings->link_field ); ?>" target="<?php echo esc_attr( $settings->link_target ); ?>" itemprop="url"> 22 22 <?php endif; ?> 23 23 <?php if ( 'yes' == $settings->photo_hyperlink && 'button' == $settings->card_btn_type ) : ?> 24 <a href="<?php echo $settings->btn_link; ?>" target="<?php echo $settings->btn_link_target; ?>" itemprop="url">24 <a href="<?php echo esc_url( $settings->btn_link ); ?>" target="<?php echo esc_attr( $settings->btn_link_target ); ?>" itemprop="url"> 25 25 <?php endif; ?> 26 <img class="<?php echo $classes; ?>" src="<?php echo $src; ?>" alt="<?php echo $alt; ?>" itemprop="image" <?php echo $attrs; ?> />26 <img class="<?php echo esc_attr( $classes ); ?>" src="<?php echo esc_url( $src ); ?>" alt="<?php echo esc_attr( $alt ); ?>" itemprop="image" <?php echo $attrs; ?> /> 27 27 <?php if ( 'yes' == $settings->photo_hyperlink && 'none' != $settings->card_btn_type ) : ?> 28 28 </a> … … 35 35 <div class="bb_boot_card_block"> 36 36 <!--Title--> 37 <<?php echo $settings->tag; ?> class="bb_boot_card_title"><?php echo $settings->card_title; ?></<?php echo $settings->tag; ?>>37 <<?php echo esc_attr( $settings->tag ); ?> class="bb_boot_card_title"><?php echo esc_html( $settings->card_title ); ?></<?php echo esc_attr( $settings->tag ); ?>> 38 38 <!--/.Title--> 39 39 <!--Text--> … … 45 45 <?php if ( 'link' == $settings->card_btn_type ) { ?> 46 46 <a class="bb_boot_card_link" href="<?php echo esc_url( $settings->link_field ); ?>" target="<?php echo esc_attr( $settings->link_target ); ?>"> 47 <?php echo $settings->card_btn_text; ?>47 <?php echo esc_html( $settings->card_btn_text ); ?> 48 48 </a> 49 49 <?php } elseif ( 'button' == $settings->card_btn_type ) { ?> 50 50 <a class="bb_boot_card_link_button" href="<?php echo esc_url( $settings->btn_link ); ?>" target="<?php echo esc_attr( $settings->btn_link_target ); ?>"> 51 <span class="bb_boot_button"><?php echo $settings->btn_text; ?></span>51 <span class="bb_boot_button"><?php echo esc_html( $settings->btn_text ); ?></span> 52 52 </a> 53 53 <?php } ?> -
bb-bootstrap-cards/trunk/bb-bootstrap-cards.php.php
r3050900 r3099081 4 4 * Plugin URI: https://www.brainstormforce.com/ 5 5 * Description: This is a plugin for creating Awesome Bootstrap Card. 6 * Author: Pratik Chaskar7 * Author URI: https:// pratikchaskar.com/6 * Author: Brainstorm Force, Pratik Chaskar 7 * Author URI: https://brainstormforce.com/ 8 8 * Text Domain: bb-bootstrap-cards 9 * Version: 1.1. 39 * Version: 1.1.4 10 10 * 11 11 * @package BB-Bootstrap-Cards -
bb-bootstrap-cards/trunk/readme.txt
r3050900 r3099081 1 1 === Cards for Beaver Builder === 2 Contributors: pratikchaskar2 Contributors: brainstormforce, pratikchaskar 3 3 Donate link: https://www.paypal.me/BrainstormForce 4 4 Requires at least: 4.4 5 5 Tags: beaver builder, page builder plugin, bootstrap cards, cards, bootstrap, drag and drop cards, bb bootstrap, Cards for Beaver Builder 6 Stable tag: 1.1. 36 Stable tag: 1.1.4 7 7 Tested up to: 6.5 8 8 License: GPLv2 or later … … 89 89 == Changelog == 90 90 91 = 1.1.4 = 92 This update addressed a security bug. Props to Wordfence for privately reporting it privately to our team. Please make sure you are using the latest version on your website. 93 91 94 = 1.1.3 = 92 95 * Security Fix: Hardened the security of the plugin. Props: Wordfence.
Note: See TracChangeset
for help on using the changeset viewer.