Changeset 3049008
- Timestamp:
- 03/11/2024 10:59:34 AM (12 months ago)
- Location:
- cww-companion
- Files:
-
- 139 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cww-companion/trunk/cww-companion.php
r3039615 r3049008 4 4 * Plugin URI: http://codeworkweb.com/plugins/cww-companion 5 5 * Description: This plugin adds some useful featuers to themes made by us(Code Work Web). 6 * Version: 1.2. 76 * Version: 1.2.8 7 7 * Author: Code Work Web 8 8 * Author URI: https://codeworkweb.com … … 18 18 } 19 19 20 define( 'CWW_COMP_VER', '1.2. 7' );20 define( 'CWW_COMP_VER', '1.2.8' ); 21 21 22 22 define( 'CWW_COMP_FILE', __FILE__ ); -
cww-companion/trunk/inc/elementor/elements/module1.php
r3009271 r3049008 592 592 593 593 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']) ); 595 595 596 596 if ( $settings['section_title_url']['is_external'] ) { … … 604 604 } 605 605 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)); 607 607 608 608 -
cww-companion/trunk/inc/elementor/elements/module2.php
r3011217 r3049008 627 627 628 628 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']) ); 630 630 631 631 if ( $settings['section_title_url']['is_external'] ) { … … 641 641 642 642 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)); 644 644 645 645 -
cww-companion/trunk/readme.txt
r3039615 r3049008 6 6 Requires PHP: 7.4 7 7 Tested up to: 6.4.2 8 Stable tag: 1.2. 78 Stable tag: 1.2.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 126 126 = 1.2.7 = 127 127 * Added new demos 128 129 = 1.2.8 = 130 * Minor bugs fixed
Note: See TracChangeset
for help on using the changeset viewer.