Plugin Directory

Changeset 3099081 for bb-bootstrap-cards


Ignore:
Timestamp:
06/07/2024 06:25:38 AM (11 months ago)
Author:
brainstormworg
Message:

Update to version 1.1.4 from GitHub

Location:
bb-bootstrap-cards
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bb-bootstrap-cards/tags/1.1.4/bb-bootstrap-cards-module/includes/frontend.php

    r3050900 r3099081  
    1919        ?>
    2020        <?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">
    2222        <?php endif; ?>
    2323        <?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">
    2525        <?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; ?> />
    2727        <?php if ( 'yes' == $settings->photo_hyperlink && 'none' != $settings->card_btn_type ) : ?>
    2828        </a>
     
    3535    <div class="bb_boot_card_block">
    3636        <!--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 ); ?>>
    3838        <!--/.Title--> 
    3939            <!--Text-->
     
    4545            <?php if ( 'link' == $settings->card_btn_type ) { ?> 
    4646            <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 ); ?>
    4848            </a>
    4949        <?php } elseif ( 'button' == $settings->card_btn_type ) { ?>
    5050            <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>
    5252            </a>   
    5353        <?php } ?>
  • bb-bootstrap-cards/tags/1.1.4/bb-bootstrap-cards.php.php

    r3050900 r3099081  
    44 * Plugin URI:      https://www.brainstormforce.com/
    55 * Description:     This is a plugin for creating Awesome Bootstrap Card.
    6  * Author:          Pratik Chaskar
    7  * Author URI:      https://pratikchaskar.com/
     6 * Author:          Brainstorm Force, Pratik Chaskar
     7 * Author URI:      https://brainstormforce.com/
    88 * Text Domain:     bb-bootstrap-cards
    9  * Version:         1.1.3
     9 * Version:         1.1.4
    1010 *
    1111 * @package         BB-Bootstrap-Cards
  • bb-bootstrap-cards/tags/1.1.4/readme.txt

    r3050900 r3099081  
    11=== Cards for Beaver Builder ===
    2 Contributors: pratikchaskar
     2Contributors: brainstormforce, pratikchaskar
    33Donate link: https://www.paypal.me/BrainstormForce
    44Requires at least: 4.4
    55Tags: beaver builder, page builder plugin, bootstrap cards, cards, bootstrap, drag and drop cards, bb bootstrap, Cards for Beaver Builder
    6 Stable tag: 1.1.3
     6Stable tag: 1.1.4
    77Tested up to: 6.5
    88License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 1.1.4 =
     92This 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
    9194= 1.1.3 =
    9295* Security Fix: Hardened the security of the plugin. Props: Wordfence.
  • bb-bootstrap-cards/trunk/bb-bootstrap-cards-module/includes/frontend.php

    r3050900 r3099081  
    1919        ?>
    2020        <?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">
    2222        <?php endif; ?>
    2323        <?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">
    2525        <?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; ?> />
    2727        <?php if ( 'yes' == $settings->photo_hyperlink && 'none' != $settings->card_btn_type ) : ?>
    2828        </a>
     
    3535    <div class="bb_boot_card_block">
    3636        <!--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 ); ?>>
    3838        <!--/.Title--> 
    3939            <!--Text-->
     
    4545            <?php if ( 'link' == $settings->card_btn_type ) { ?> 
    4646            <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 ); ?>
    4848            </a>
    4949        <?php } elseif ( 'button' == $settings->card_btn_type ) { ?>
    5050            <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>
    5252            </a>   
    5353        <?php } ?>
  • bb-bootstrap-cards/trunk/bb-bootstrap-cards.php.php

    r3050900 r3099081  
    44 * Plugin URI:      https://www.brainstormforce.com/
    55 * Description:     This is a plugin for creating Awesome Bootstrap Card.
    6  * Author:          Pratik Chaskar
    7  * Author URI:      https://pratikchaskar.com/
     6 * Author:          Brainstorm Force, Pratik Chaskar
     7 * Author URI:      https://brainstormforce.com/
    88 * Text Domain:     bb-bootstrap-cards
    9  * Version:         1.1.3
     9 * Version:         1.1.4
    1010 *
    1111 * @package         BB-Bootstrap-Cards
  • bb-bootstrap-cards/trunk/readme.txt

    r3050900 r3099081  
    11=== Cards for Beaver Builder ===
    2 Contributors: pratikchaskar
     2Contributors: brainstormforce, pratikchaskar
    33Donate link: https://www.paypal.me/BrainstormForce
    44Requires at least: 4.4
    55Tags: beaver builder, page builder plugin, bootstrap cards, cards, bootstrap, drag and drop cards, bb bootstrap, Cards for Beaver Builder
    6 Stable tag: 1.1.3
     6Stable tag: 1.1.4
    77Tested up to: 6.5
    88License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 1.1.4 =
     92This 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
    9194= 1.1.3 =
    9295* Security Fix: Hardened the security of the plugin. Props: Wordfence.
Note: See TracChangeset for help on using the changeset viewer.