Plugin Directory

Changeset 2886672


Ignore:
Timestamp:
03/24/2023 11:12:02 PM (3 years ago)
Author:
wpweaver
Message:

Version 6.2.7

Location:
weaverx-theme-support
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • weaverx-theme-support/tags/6.2.7/includes/wvrx-ts-shortcodes.php

    r2885252 r2886672  
    743743    $tag = 'span';
    744744    if (isset ($vals[0])) {
    745         $tag = esc_args(trim($vals[0]));
     745        $tag = trim($vals[0]);
    746746    }
    747747
     
    754754    }
    755755
    756     return '<' . $tag . esc_attr($args ). '>';
     756    return wp_kses_post('<' . $tag . $args . '>');
    757757}
    758758
  • weaverx-theme-support/tags/6.2.7/readme.txt

    r2885252 r2886672  
    1212Requires PHP: 7.1
    1313Tested up to: 6.2
    14 Stable tag: 6.2.6
     14Stable tag: 6.2.7
    1515
    1616A useful shortcode and widget collection for Weaver Xtreme
     
    7676
    7777== ChangeLog =
    78 = 6.2.6 =
     78= 6.2.7 =
    7979* Tweaks: Changed how some shortcodes were validated.
    8080
  • weaverx-theme-support/tags/6.2.7/weaverx-ts.php

    r2885252 r2886672  
    66Author: wpweaver
    77Author URI: http://weavertheme.com/about/
    8 Version: 6.2.6
     8Version: 6.2.7
    99License: GPL V3
    1010
     
    4040    strpos($theme, '/weaver-xtreme-5') !== false) {        // only load if Weaver Xtreme is the theme
    4141
    42     define('WVRX_TS_VERSION', '6.2.6');
     42    define('WVRX_TS_VERSION', '6.2.7');
    4343    define('WVRX_TS_PAGEBUILDERS', true);
    4444
  • weaverx-theme-support/trunk/includes/wvrx-ts-shortcodes.php

    r2885252 r2886672  
    743743    $tag = 'span';
    744744    if (isset ($vals[0])) {
    745         $tag = esc_args(trim($vals[0]));
     745        $tag = trim($vals[0]);
    746746    }
    747747
     
    754754    }
    755755
    756     return '<' . $tag . esc_attr($args ). '>';
     756    return wp_kses_post('<' . $tag . $args . '>');
    757757}
    758758
  • weaverx-theme-support/trunk/readme.txt

    r2885252 r2886672  
    1212Requires PHP: 7.1
    1313Tested up to: 6.2
    14 Stable tag: 6.2.6
     14Stable tag: 6.2.7
    1515
    1616A useful shortcode and widget collection for Weaver Xtreme
     
    7676
    7777== ChangeLog =
    78 = 6.2.6 =
     78= 6.2.7 =
    7979* Tweaks: Changed how some shortcodes were validated.
    8080
  • weaverx-theme-support/trunk/weaverx-ts.php

    r2885252 r2886672  
    66Author: wpweaver
    77Author URI: http://weavertheme.com/about/
    8 Version: 6.2.6
     8Version: 6.2.7
    99License: GPL V3
    1010
     
    4040    strpos($theme, '/weaver-xtreme-5') !== false) {        // only load if Weaver Xtreme is the theme
    4141
    42     define('WVRX_TS_VERSION', '6.2.6');
     42    define('WVRX_TS_VERSION', '6.2.7');
    4343    define('WVRX_TS_PAGEBUILDERS', true);
    4444
Note: See TracChangeset for help on using the changeset viewer.