Changeset 2878133
- Timestamp:
- 03/10/2023 08:49:04 PM (3 years ago)
- Location:
- weaverx-theme-support
- Files:
-
- 6 edited
- 1 copied
-
tags/6.2.4 (copied) (copied from weaverx-theme-support/trunk)
-
tags/6.2.4/includes/wvrx-ts-shortcodes.php (modified) (4 diffs)
-
tags/6.2.4/readme.txt (modified) (2 diffs)
-
tags/6.2.4/weaverx-ts.php (modified) (2 diffs)
-
trunk/includes/wvrx-ts-shortcodes.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/weaverx-ts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
weaverx-theme-support/tags/6.2.4/includes/wvrx-ts-shortcodes.php
r2877556 r2878133 361 361 // enqueue the theme support jslib only now when it will actually be needed! 362 362 363 // wp_enqueue_script('wvrxtsJSLib', wvrx_ts_plugins_url('/js/wvrx-ts-jslib', WVRX_TS_MINIFY . '.js'),array('jquery'),WVRX_TS_VERSION,true);364 363 365 364 if (!isset($GLOBALS['wvrx_ts_tab_id'])) { … … 584 583 } 585 584 586 $ret = "\n" . wp_kses_post($cntr1 . '<iframe src="' . $url587 . '" width="' . $w . '" height="' . $h. $allowfull . '></iframe>'588 . $cntr2 ). "\n";585 $ret = "\n" . wp_kses_post($cntr1) . '<iframe src="' . wp_kses_post($url) 586 . '" width="' . wp_kses_post($w) . '" height="' . wp_kses_post($h) . $allowfull . '></iframe>' 587 . $cntr2 . "\n"; 589 588 590 589 return $ret; … … 647 646 648 647 649 $cntr1 = $center ? "<div class=\"wvrx-video wvrx-vimeo\" style=\"margin-left:auto;margin-right:auto;max-width: $percent%;\">" :650 "<div class=\"wvrx-video wvrx-vimeo\" style=\"max-width: $percent%;\">";648 $cntr1 = $center ? "<div class=\"wvrx-video wvrx-vimeo\" style=\"margin-left:auto;margin-right:auto;max-width:" . wp_kses_post($percent) . "%;\">" : 649 "<div class=\"wvrx-video wvrx-vimeo\" style=\"max-width:" . wp_kses_post($percent) . "%;\">"; 651 650 $cntr2 = '</div>'; 652 651 $h = 9; … … 657 656 } 658 657 659 $ret = "\n" . wp_kses_post($cntr1 . '<iframe src="' . $url660 . '" width="' . $w . '" height="' . $h. '" allowfullscreen></iframe>'661 . $cntr2 ). "\n";658 $ret = "\n" . $cntr1 . '<iframe src="' . wp_kses_post($url) 659 . '" width="' . wp_kses_post($w) . '" height="' . wp_kses_post($h) . '" allowfullscreen></iframe>' 660 . $cntr2 . "\n"; 662 661 663 662 return $ret; -
weaverx-theme-support/tags/6.2.4/readme.txt
r2877556 r2878133 12 12 Requires PHP: 7.1 13 13 Tested up to: 6.2 14 Stable tag: 6.2. 314 Stable tag: 6.2.4 15 15 16 16 A useful shortcode and widget collection for Weaver Xtreme … … 76 76 77 77 == ChangeLog = 78 = 6.2. 2=79 * 6.2.1 ajd 6.2.2 weren't so minor afterall. 6.2.3 should fix things. All the changes were related to the plugin's78 = 6.2.4 = 79 * Release issues - sorry! 6.2.4 should have things working. All the changes were related to the plugin's 80 80 shortcodes which had security issues when used in a page or post by users with a higher than subscriber level. 81 82 = 6.2.2 =83 * Minor fix84 81 85 82 = 6.2 = -
weaverx-theme-support/tags/6.2.4/weaverx-ts.php
r2877556 r2878133 6 6 Author: wpweaver 7 7 Author URI: http://weavertheme.com/about/ 8 Version: 6.2. 38 Version: 6.2.4 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.1'); 43 define('WVRX_TS_MINIFY', ''); // '' for dev, '.min' for production 42 define('WVRX_TS_VERSION', '6.2.4'); 44 43 define('WVRX_TS_PAGEBUILDERS', true); 45 44 -
weaverx-theme-support/trunk/includes/wvrx-ts-shortcodes.php
r2877556 r2878133 361 361 // enqueue the theme support jslib only now when it will actually be needed! 362 362 363 // wp_enqueue_script('wvrxtsJSLib', wvrx_ts_plugins_url('/js/wvrx-ts-jslib', WVRX_TS_MINIFY . '.js'),array('jquery'),WVRX_TS_VERSION,true);364 363 365 364 if (!isset($GLOBALS['wvrx_ts_tab_id'])) { … … 584 583 } 585 584 586 $ret = "\n" . wp_kses_post($cntr1 . '<iframe src="' . $url587 . '" width="' . $w . '" height="' . $h. $allowfull . '></iframe>'588 . $cntr2 ). "\n";585 $ret = "\n" . wp_kses_post($cntr1) . '<iframe src="' . wp_kses_post($url) 586 . '" width="' . wp_kses_post($w) . '" height="' . wp_kses_post($h) . $allowfull . '></iframe>' 587 . $cntr2 . "\n"; 589 588 590 589 return $ret; … … 647 646 648 647 649 $cntr1 = $center ? "<div class=\"wvrx-video wvrx-vimeo\" style=\"margin-left:auto;margin-right:auto;max-width: $percent%;\">" :650 "<div class=\"wvrx-video wvrx-vimeo\" style=\"max-width: $percent%;\">";648 $cntr1 = $center ? "<div class=\"wvrx-video wvrx-vimeo\" style=\"margin-left:auto;margin-right:auto;max-width:" . wp_kses_post($percent) . "%;\">" : 649 "<div class=\"wvrx-video wvrx-vimeo\" style=\"max-width:" . wp_kses_post($percent) . "%;\">"; 651 650 $cntr2 = '</div>'; 652 651 $h = 9; … … 657 656 } 658 657 659 $ret = "\n" . wp_kses_post($cntr1 . '<iframe src="' . $url660 . '" width="' . $w . '" height="' . $h. '" allowfullscreen></iframe>'661 . $cntr2 ). "\n";658 $ret = "\n" . $cntr1 . '<iframe src="' . wp_kses_post($url) 659 . '" width="' . wp_kses_post($w) . '" height="' . wp_kses_post($h) . '" allowfullscreen></iframe>' 660 . $cntr2 . "\n"; 662 661 663 662 return $ret; -
weaverx-theme-support/trunk/readme.txt
r2877556 r2878133 12 12 Requires PHP: 7.1 13 13 Tested up to: 6.2 14 Stable tag: 6.2. 314 Stable tag: 6.2.4 15 15 16 16 A useful shortcode and widget collection for Weaver Xtreme … … 76 76 77 77 == ChangeLog = 78 = 6.2. 2=79 * 6.2.1 ajd 6.2.2 weren't so minor afterall. 6.2.3 should fix things. All the changes were related to the plugin's78 = 6.2.4 = 79 * Release issues - sorry! 6.2.4 should have things working. All the changes were related to the plugin's 80 80 shortcodes which had security issues when used in a page or post by users with a higher than subscriber level. 81 82 = 6.2.2 =83 * Minor fix84 81 85 82 = 6.2 = -
weaverx-theme-support/trunk/weaverx-ts.php
r2877556 r2878133 6 6 Author: wpweaver 7 7 Author URI: http://weavertheme.com/about/ 8 Version: 6.2. 38 Version: 6.2.4 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.1'); 43 define('WVRX_TS_MINIFY', ''); // '' for dev, '.min' for production 42 define('WVRX_TS_VERSION', '6.2.4'); 44 43 define('WVRX_TS_PAGEBUILDERS', true); 45 44
Note: See TracChangeset
for help on using the changeset viewer.