Plugin Directory

Changeset 3049008


Ignore:
Timestamp:
03/11/2024 10:59:34 AM (12 months ago)
Author:
codeworkweb
Message:

Minor bugs fixed

Location:
cww-companion
Files:
139 added
4 edited

Legend:

Unmodified
Added
Removed
  • cww-companion/trunk/cww-companion.php

    r3039615 r3049008  
    44 * Plugin URI: http://codeworkweb.com/plugins/cww-companion
    55 * Description: This plugin adds some useful featuers to themes made by us(Code Work Web).
    6  * Version: 1.2.7
     6 * Version: 1.2.8
    77 * Author: Code Work Web
    88 * Author URI: https://codeworkweb.com
     
    1818}
    1919
    20 define( 'CWW_COMP_VER', '1.2.7' );
     20define( 'CWW_COMP_VER', '1.2.8' );
    2121
    2222define( 'CWW_COMP_FILE', __FILE__ );
  • cww-companion/trunk/inc/elementor/elements/module1.php

    r3009271 r3049008  
    592592       
    593593        if ( ! empty( $settings['section_title_url']['url'] ) ) {
    594             $this->add_render_attribute( 'url', 'href', $settings['section_title_url']['url'] );
     594            $this->add_render_attribute( 'url', 'href', esc_url($settings['section_title_url']['url']) );
    595595
    596596            if ( $settings['section_title_url']['is_external'] ) {
     
    604604        }
    605605
    606         $this->add_render_attribute('code-wrapp', 'class', 'code-wrapp module1 cww-flex '. $posts_layout);
     606        $this->add_render_attribute('code-wrapp', 'class', 'code-wrapp module1 cww-flex '. esc_attr($posts_layout));
    607607
    608608       
  • cww-companion/trunk/inc/elementor/elements/module2.php

    r3011217 r3049008  
    627627
    628628        if ( ! empty( $settings['section_title_url']['url'] ) ) {
    629             $this->add_render_attribute( 'url', 'href', $settings['section_title_url']['url'] );
     629            $this->add_render_attribute( 'url', 'href', esc_url($settings['section_title_url']['url']) );
    630630
    631631            if ( $settings['section_title_url']['is_external'] ) {
     
    641641       
    642642
    643         $this->add_render_attribute('code-wrapp', 'class', 'code-wrapp module2 cww-flex '. $posts_layout);
     643        $this->add_render_attribute('code-wrapp', 'class', 'code-wrapp module2 cww-flex '. esc_attr($posts_layout));
    644644
    645645       
  • cww-companion/trunk/readme.txt

    r3039615 r3049008  
    66Requires PHP: 7.4
    77Tested up to: 6.4.2
    8 Stable tag: 1.2.7
     8Stable tag: 1.2.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    126126= 1.2.7 =
    127127* Added new demos
     128
     129= 1.2.8 =
     130* Minor bugs fixed
Note: See TracChangeset for help on using the changeset viewer.