Changeset 2886672
- Timestamp:
- 03/24/2023 11:12:02 PM (3 years ago)
- Location:
- weaverx-theme-support
- Files:
-
- 6 edited
- 1 copied
-
tags/6.2.7 (copied) (copied from weaverx-theme-support/trunk)
-
tags/6.2.7/includes/wvrx-ts-shortcodes.php (modified) (2 diffs)
-
tags/6.2.7/readme.txt (modified) (2 diffs)
-
tags/6.2.7/weaverx-ts.php (modified) (2 diffs)
-
trunk/includes/wvrx-ts-shortcodes.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/weaverx-ts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
weaverx-theme-support/tags/6.2.7/includes/wvrx-ts-shortcodes.php
r2885252 r2886672 743 743 $tag = 'span'; 744 744 if (isset ($vals[0])) { 745 $tag = esc_args(trim($vals[0]));745 $tag = trim($vals[0]); 746 746 } 747 747 … … 754 754 } 755 755 756 return '<' . $tag . esc_attr($args ). '>';756 return wp_kses_post('<' . $tag . $args . '>'); 757 757 } 758 758 -
weaverx-theme-support/tags/6.2.7/readme.txt
r2885252 r2886672 12 12 Requires PHP: 7.1 13 13 Tested up to: 6.2 14 Stable tag: 6.2. 614 Stable tag: 6.2.7 15 15 16 16 A useful shortcode and widget collection for Weaver Xtreme … … 76 76 77 77 == ChangeLog = 78 = 6.2. 6=78 = 6.2.7 = 79 79 * Tweaks: Changed how some shortcodes were validated. 80 80 -
weaverx-theme-support/tags/6.2.7/weaverx-ts.php
r2885252 r2886672 6 6 Author: wpweaver 7 7 Author URI: http://weavertheme.com/about/ 8 Version: 6.2. 68 Version: 6.2.7 9 9 License: GPL V3 10 10 … … 40 40 strpos($theme, '/weaver-xtreme-5') !== false) { // only load if Weaver Xtreme is the theme 41 41 42 define('WVRX_TS_VERSION', '6.2. 6');42 define('WVRX_TS_VERSION', '6.2.7'); 43 43 define('WVRX_TS_PAGEBUILDERS', true); 44 44 -
weaverx-theme-support/trunk/includes/wvrx-ts-shortcodes.php
r2885252 r2886672 743 743 $tag = 'span'; 744 744 if (isset ($vals[0])) { 745 $tag = esc_args(trim($vals[0]));745 $tag = trim($vals[0]); 746 746 } 747 747 … … 754 754 } 755 755 756 return '<' . $tag . esc_attr($args ). '>';756 return wp_kses_post('<' . $tag . $args . '>'); 757 757 } 758 758 -
weaverx-theme-support/trunk/readme.txt
r2885252 r2886672 12 12 Requires PHP: 7.1 13 13 Tested up to: 6.2 14 Stable tag: 6.2. 614 Stable tag: 6.2.7 15 15 16 16 A useful shortcode and widget collection for Weaver Xtreme … … 76 76 77 77 == ChangeLog = 78 = 6.2. 6=78 = 6.2.7 = 79 79 * Tweaks: Changed how some shortcodes were validated. 80 80 -
weaverx-theme-support/trunk/weaverx-ts.php
r2885252 r2886672 6 6 Author: wpweaver 7 7 Author URI: http://weavertheme.com/about/ 8 Version: 6.2. 68 Version: 6.2.7 9 9 License: GPL V3 10 10 … … 40 40 strpos($theme, '/weaver-xtreme-5') !== false) { // only load if Weaver Xtreme is the theme 41 41 42 define('WVRX_TS_VERSION', '6.2. 6');42 define('WVRX_TS_VERSION', '6.2.7'); 43 43 define('WVRX_TS_PAGEBUILDERS', true); 44 44
Note: See TracChangeset
for help on using the changeset viewer.