Plugin Directory

Changeset 2995285


Ignore:
Timestamp:
11/13/2023 04:11:18 PM (2 years ago)
Author:
willnorris
Message:

Update to version 1.11.2 from GitHub

Location:
opengraph
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • opengraph/tags/1.11.2/opengraph.php

    r2892781 r2995285  
    177177    }
    178178
    179     return esc_attr( $title );
     179    return wp_strip_all_tags( $title );
    180180}
    181181
     
    195195    }
    196196
    197     return esc_attr( $type );
     197    return $type;
    198198}
    199199
     
    359359    }
    360360
    361     return esc_attr( $name );
     361    return wp_strip_all_tags( $name );
    362362}
    363363
     
    396396    $description = opengraph_trim_text( $description, $length );
    397397
    398     return esc_attr( $description );
     398    return wp_strip_all_tags( $description );
    399399}
    400400
     
    437437    }
    438438
    439     return esc_attr( $card );
     439    return $card;
    440440}
    441441
     
    464464    }
    465465
    466     return esc_attr( $creator );
     466    return $creator;
    467467}
    468468
  • opengraph/tags/1.11.2/readme.txt

    r2950019 r2995285  
    33Tags: social, opengraph, ogp, facebook
    44Requires at least: 2.3
    5 Tested up to: 6.3
    6 Stable tag: 1.11.1
     5Tested up to: 6.4
     6Stable tag: 1.11.2
    77License: Apache License, Version 2.0
    88License URI: https://www.apache.org/licenses/LICENSE-2.0.html
     
    6363Project maintained on github at [willnorris/wordpress-opengraph](https://github.com/willnorris/wordpress-opengraph).
    6464
    65 = version 1.11.1 (April 03, 2023) =
     65= version 1.11.2 (Nov 13, 2023) =
     66 - stript tags from title, site-name and description
     67
     68= version 1.11.1 (Apr 03, 2023) =
    6669 - fixed a typo
    6770
    68 = version 1.11.0 (October 21, 2021) =
     71= version 1.11.0 (Oct 21, 2021) =
    6972 - fixed attachment issue
    7073 - fixed PHP 7.4 issue
    7174
    72 = version 1.10.0 (April 20, 2020) =
     75= version 1.10.0 (Apr 20, 2020) =
    7376 - basic video support
    7477 - basic audio support
  • opengraph/trunk/opengraph.php

    r2892781 r2995285  
    177177    }
    178178
    179     return esc_attr( $title );
     179    return wp_strip_all_tags( $title );
    180180}
    181181
     
    195195    }
    196196
    197     return esc_attr( $type );
     197    return $type;
    198198}
    199199
     
    359359    }
    360360
    361     return esc_attr( $name );
     361    return wp_strip_all_tags( $name );
    362362}
    363363
     
    396396    $description = opengraph_trim_text( $description, $length );
    397397
    398     return esc_attr( $description );
     398    return wp_strip_all_tags( $description );
    399399}
    400400
     
    437437    }
    438438
    439     return esc_attr( $card );
     439    return $card;
    440440}
    441441
     
    464464    }
    465465
    466     return esc_attr( $creator );
     466    return $creator;
    467467}
    468468
  • opengraph/trunk/readme.txt

    r2950019 r2995285  
    33Tags: social, opengraph, ogp, facebook
    44Requires at least: 2.3
    5 Tested up to: 6.3
    6 Stable tag: 1.11.1
     5Tested up to: 6.4
     6Stable tag: 1.11.2
    77License: Apache License, Version 2.0
    88License URI: https://www.apache.org/licenses/LICENSE-2.0.html
     
    6363Project maintained on github at [willnorris/wordpress-opengraph](https://github.com/willnorris/wordpress-opengraph).
    6464
    65 = version 1.11.1 (April 03, 2023) =
     65= version 1.11.2 (Nov 13, 2023) =
     66 - stript tags from title, site-name and description
     67
     68= version 1.11.1 (Apr 03, 2023) =
    6669 - fixed a typo
    6770
    68 = version 1.11.0 (October 21, 2021) =
     71= version 1.11.0 (Oct 21, 2021) =
    6972 - fixed attachment issue
    7073 - fixed PHP 7.4 issue
    7174
    72 = version 1.10.0 (April 20, 2020) =
     75= version 1.10.0 (Apr 20, 2020) =
    7376 - basic video support
    7477 - basic audio support
Note: See TracChangeset for help on using the changeset viewer.