Changeset 3201178
- Timestamp:
- 12/02/2024 08:20:45 PM (16 months ago)
- Location:
- auto-iframe
- Files:
-
- 4 edited
- 1 copied
-
tags/2.0 (copied) (copied from auto-iframe/trunk)
-
tags/2.0/auto-iframe.php (modified) (2 diffs)
-
tags/2.0/readme.txt (modified) (2 diffs)
-
trunk/auto-iframe.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
auto-iframe/tags/2.0/auto-iframe.php
r3175077 r3201178 4 4 Plugin URI: http://toolstack.com/auto-iframe 5 5 Description: A quick and easy shortcode to embed iframe's that resize to the content of the remote site. 6 Version: 1.96 Version: 2.0 7 7 Author: Greg Ross 8 8 Author URI: http://toolstack.com/ … … 174 174 } 175 175 176 $result .= '<iframe id="' . $tag . '" name="' . $tag . '" src="' . $link . '" width="' . $width . '" height="' . $height . '" frameborder="' . $border . '" scrolling="' . $scroll. '"' . $onload_autosize . '></iframe>';176 $result .= '<iframe id="' . esc_attr($tag) . '" name="' . esc_attr($tag) . '" src="' . esc_url($link) . '" width="' . esc_attr($width) . '" height="' . esc_attr($height) . '" frameborder="' . esc_attr($border) . '" scrolling="' . esc_attr($scroll) . '"' . $onload_autosize . '></iframe>'; 177 177 178 178 return $result; -
auto-iframe/tags/2.0/readme.txt
r3174673 r3201178 7 7 Requires at least: 3.0 8 8 Tested up to: 6.6 9 Stable tag: 1.99 Stable tag: 2.0 10 10 License: GPL2 11 11 … … 53 53 54 54 == Upgrade Notice == 55 = 1.9 =56 55 None at this time. 57 56 58 57 == Changelog == 58 = 2.0 = 59 * Release date: December 2, 2024 60 * Fixed: Escape all link parameters. 61 59 62 = 1.9 = 60 63 * Release date: October 23, 2024 -
auto-iframe/trunk/auto-iframe.php
r3175077 r3201178 4 4 Plugin URI: http://toolstack.com/auto-iframe 5 5 Description: A quick and easy shortcode to embed iframe's that resize to the content of the remote site. 6 Version: 1.96 Version: 2.0 7 7 Author: Greg Ross 8 8 Author URI: http://toolstack.com/ … … 174 174 } 175 175 176 $result .= '<iframe id="' . $tag . '" name="' . $tag . '" src="' . $link . '" width="' . $width . '" height="' . $height . '" frameborder="' . $border . '" scrolling="' . $scroll. '"' . $onload_autosize . '></iframe>';176 $result .= '<iframe id="' . esc_attr($tag) . '" name="' . esc_attr($tag) . '" src="' . esc_url($link) . '" width="' . esc_attr($width) . '" height="' . esc_attr($height) . '" frameborder="' . esc_attr($border) . '" scrolling="' . esc_attr($scroll) . '"' . $onload_autosize . '></iframe>'; 177 177 178 178 return $result; -
auto-iframe/trunk/readme.txt
r3174673 r3201178 7 7 Requires at least: 3.0 8 8 Tested up to: 6.6 9 Stable tag: 1.99 Stable tag: 2.0 10 10 License: GPL2 11 11 … … 53 53 54 54 == Upgrade Notice == 55 = 1.9 =56 55 None at this time. 57 56 58 57 == Changelog == 58 = 2.0 = 59 * Release date: December 2, 2024 60 * Fixed: Escape all link parameters. 61 59 62 = 1.9 = 60 63 * Release date: October 23, 2024
Note: See TracChangeset
for help on using the changeset viewer.