Plugin Directory

Changeset 3201178


Ignore:
Timestamp:
12/02/2024 08:20:45 PM (16 months ago)
Author:
GregRoss
Message:

Update to version 2.0 from GitHub

Location:
auto-iframe
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • auto-iframe/tags/2.0/auto-iframe.php

    r3175077 r3201178  
    44Plugin URI: http://toolstack.com/auto-iframe
    55Description: A quick and easy shortcode to embed iframe's that resize to the content of the remote site.
    6 Version: 1.9
     6Version: 2.0
    77Author: Greg Ross
    88Author URI: http://toolstack.com/
     
    174174    }
    175175
    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>';
    177177
    178178    return $result;
  • auto-iframe/tags/2.0/readme.txt

    r3174673 r3201178  
    77Requires at least: 3.0
    88Tested up to: 6.6
    9 Stable tag: 1.9
     9Stable tag: 2.0
    1010License: GPL2
    1111
     
    5353
    5454== Upgrade Notice ==
    55 = 1.9 =
    5655None at this time.
    5756
    5857== Changelog ==
     58= 2.0 =
     59* Release date: December 2, 2024
     60* Fixed: Escape all link parameters.
     61
    5962= 1.9 =
    6063* Release date: October 23, 2024
  • auto-iframe/trunk/auto-iframe.php

    r3175077 r3201178  
    44Plugin URI: http://toolstack.com/auto-iframe
    55Description: A quick and easy shortcode to embed iframe's that resize to the content of the remote site.
    6 Version: 1.9
     6Version: 2.0
    77Author: Greg Ross
    88Author URI: http://toolstack.com/
     
    174174    }
    175175
    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>';
    177177
    178178    return $result;
  • auto-iframe/trunk/readme.txt

    r3174673 r3201178  
    77Requires at least: 3.0
    88Tested up to: 6.6
    9 Stable tag: 1.9
     9Stable tag: 2.0
    1010License: GPL2
    1111
     
    5353
    5454== Upgrade Notice ==
    55 = 1.9 =
    5655None at this time.
    5756
    5857== Changelog ==
     58= 2.0 =
     59* Release date: December 2, 2024
     60* Fixed: Escape all link parameters.
     61
    5962= 1.9 =
    6063* Release date: October 23, 2024
Note: See TracChangeset for help on using the changeset viewer.