Plugin Directory

Changeset 3174673


Ignore:
Timestamp:
10/24/2024 12:53:31 AM (17 months ago)
Author:
GregRoss
Message:

Update to version 1.9 from GitHub

Location:
auto-iframe
Files:
4 edited
1 copied

Legend:

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

    r3164574 r3174673  
    120120    if( array_key_exists( 'link', $atts ) ) { $link = htmlentities( trim( $atts['link'] ), ENT_QUOTES ); }
    121121
     122    // Check to see if this is a javascript link, if so, don't process it.
     123    if( preg_match('/^javascript:/i', $link ) ) { return ''; }
     124
    122125    // If no link has been passed in, there's nothing to do so just return a blank string.
    123126    if( $link == '' ) { return ''; }
  • auto-iframe/tags/1.9/readme.txt

    r3164574 r3174673  
    77Requires at least: 3.0
    88Tested up to: 6.6
    9 Stable tag: 1.8
     9Stable tag: 1.9
    1010License: GPL2
    1111
     
    5353
    5454== Upgrade Notice ==
    55 = 1.8 =
     55= 1.9 =
    5656None at this time.
    5757
    5858== Changelog ==
     59= 1.9 =
     60* Release date: October 23, 2024
     61* Fixed: Don't allow links that are javascript code.
     62
    5963= 1.8 =
    6064* Release date: October 7, 2024
  • auto-iframe/trunk/auto-iframe.php

    r3164574 r3174673  
    120120    if( array_key_exists( 'link', $atts ) ) { $link = htmlentities( trim( $atts['link'] ), ENT_QUOTES ); }
    121121
     122    // Check to see if this is a javascript link, if so, don't process it.
     123    if( preg_match('/^javascript:/i', $link ) ) { return ''; }
     124
    122125    // If no link has been passed in, there's nothing to do so just return a blank string.
    123126    if( $link == '' ) { return ''; }
  • auto-iframe/trunk/readme.txt

    r3164574 r3174673  
    77Requires at least: 3.0
    88Tested up to: 6.6
    9 Stable tag: 1.8
     9Stable tag: 1.9
    1010License: GPL2
    1111
     
    5353
    5454== Upgrade Notice ==
    55 = 1.8 =
     55= 1.9 =
    5656None at this time.
    5757
    5858== Changelog ==
     59= 1.9 =
     60* Release date: October 23, 2024
     61* Fixed: Don't allow links that are javascript code.
     62
    5963= 1.8 =
    6064* Release date: October 7, 2024
Note: See TracChangeset for help on using the changeset viewer.