Changeset 2995285
- Timestamp:
- 11/13/2023 04:11:18 PM (2 years ago)
- Location:
- opengraph
- Files:
-
- 4 edited
- 1 copied
-
tags/1.11.2 (copied) (copied from opengraph/trunk)
-
tags/1.11.2/opengraph.php (modified) (6 diffs)
-
tags/1.11.2/readme.txt (modified) (2 diffs)
-
trunk/opengraph.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
opengraph/tags/1.11.2/opengraph.php
r2892781 r2995285 177 177 } 178 178 179 return esc_attr( $title );179 return wp_strip_all_tags( $title ); 180 180 } 181 181 … … 195 195 } 196 196 197 return esc_attr( $type );197 return $type; 198 198 } 199 199 … … 359 359 } 360 360 361 return esc_attr( $name );361 return wp_strip_all_tags( $name ); 362 362 } 363 363 … … 396 396 $description = opengraph_trim_text( $description, $length ); 397 397 398 return esc_attr( $description );398 return wp_strip_all_tags( $description ); 399 399 } 400 400 … … 437 437 } 438 438 439 return esc_attr( $card );439 return $card; 440 440 } 441 441 … … 464 464 } 465 465 466 return esc_attr( $creator );466 return $creator; 467 467 } 468 468 -
opengraph/tags/1.11.2/readme.txt
r2950019 r2995285 3 3 Tags: social, opengraph, ogp, facebook 4 4 Requires at least: 2.3 5 Tested up to: 6. 36 Stable tag: 1.11. 15 Tested up to: 6.4 6 Stable tag: 1.11.2 7 7 License: Apache License, Version 2.0 8 8 License URI: https://www.apache.org/licenses/LICENSE-2.0.html … … 63 63 Project maintained on github at [willnorris/wordpress-opengraph](https://github.com/willnorris/wordpress-opengraph). 64 64 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) = 66 69 - fixed a typo 67 70 68 = version 1.11.0 (Oct ober21, 2021) =71 = version 1.11.0 (Oct 21, 2021) = 69 72 - fixed attachment issue 70 73 - fixed PHP 7.4 issue 71 74 72 = version 1.10.0 (Apr il20, 2020) =75 = version 1.10.0 (Apr 20, 2020) = 73 76 - basic video support 74 77 - basic audio support -
opengraph/trunk/opengraph.php
r2892781 r2995285 177 177 } 178 178 179 return esc_attr( $title );179 return wp_strip_all_tags( $title ); 180 180 } 181 181 … … 195 195 } 196 196 197 return esc_attr( $type );197 return $type; 198 198 } 199 199 … … 359 359 } 360 360 361 return esc_attr( $name );361 return wp_strip_all_tags( $name ); 362 362 } 363 363 … … 396 396 $description = opengraph_trim_text( $description, $length ); 397 397 398 return esc_attr( $description );398 return wp_strip_all_tags( $description ); 399 399 } 400 400 … … 437 437 } 438 438 439 return esc_attr( $card );439 return $card; 440 440 } 441 441 … … 464 464 } 465 465 466 return esc_attr( $creator );466 return $creator; 467 467 } 468 468 -
opengraph/trunk/readme.txt
r2950019 r2995285 3 3 Tags: social, opengraph, ogp, facebook 4 4 Requires at least: 2.3 5 Tested up to: 6. 36 Stable tag: 1.11. 15 Tested up to: 6.4 6 Stable tag: 1.11.2 7 7 License: Apache License, Version 2.0 8 8 License URI: https://www.apache.org/licenses/LICENSE-2.0.html … … 63 63 Project maintained on github at [willnorris/wordpress-opengraph](https://github.com/willnorris/wordpress-opengraph). 64 64 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) = 66 69 - fixed a typo 67 70 68 = version 1.11.0 (Oct ober21, 2021) =71 = version 1.11.0 (Oct 21, 2021) = 69 72 - fixed attachment issue 70 73 - fixed PHP 7.4 issue 71 74 72 = version 1.10.0 (Apr il20, 2020) =75 = version 1.10.0 (Apr 20, 2020) = 73 76 - basic video support 74 77 - basic audio support
Note: See TracChangeset
for help on using the changeset viewer.