Changeset 2521330
- Timestamp:
- 04/26/2021 09:33:18 AM (5 years ago)
- Location:
- add-wpgraphql-seo
- Files:
-
- 6 edited
- 1 copied
-
tags/4.14.0 (copied) (copied from add-wpgraphql-seo/trunk)
-
tags/4.14.0/CHANGELOG.md (modified) (2 diffs)
-
tags/4.14.0/readme.txt (modified) (1 diff)
-
tags/4.14.0/wp-graphql-yoast-seo.php (modified) (2 diffs)
-
trunk/CHANGELOG.md (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-graphql-yoast-seo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-wpgraphql-seo/tags/4.14.0/CHANGELOG.md
r2511571 r2521330 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 8 ## [4.13.1] - 2021-05-06 8 ## [4.14.0] - 2021-04-26 9 10 ### Changed 11 12 - Decode strings via html_entity_decode 13 14 ## [4.13.1] - 2021-04-06 9 15 10 16 ### Changed … … 12 18 - Version bump again, release failed 13 19 14 ## [4.13.0] - 2021-0 5-0620 ## [4.13.0] - 2021-04-06 15 21 16 22 ### Added -
add-wpgraphql-seo/tags/4.14.0/readme.txt
r2511571 r2521330 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 4.1 3.17 Stable tag: 4.14.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/tags/4.14.0/wp-graphql-yoast-seo.php
r2511571 r2521330 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.1 3.111 * Version: 4.14.0 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 58 58 function wp_gql_seo_format_string($string) 59 59 { 60 return isset($string) ? trim($string) : null;60 return isset($string) ? html_entity_decode(trim($string)) : null; 61 61 } 62 62 } -
add-wpgraphql-seo/trunk/CHANGELOG.md
r2511571 r2521330 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 8 ## [4.13.1] - 2021-05-06 8 ## [4.14.0] - 2021-04-26 9 10 ### Changed 11 12 - Decode strings via html_entity_decode 13 14 ## [4.13.1] - 2021-04-06 9 15 10 16 ### Changed … … 12 18 - Version bump again, release failed 13 19 14 ## [4.13.0] - 2021-0 5-0620 ## [4.13.0] - 2021-04-06 15 21 16 22 ### Added -
add-wpgraphql-seo/trunk/readme.txt
r2511571 r2521330 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 4.1 3.17 Stable tag: 4.14.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/trunk/wp-graphql-yoast-seo.php
r2511571 r2521330 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.1 3.111 * Version: 4.14.0 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 58 58 function wp_gql_seo_format_string($string) 59 59 { 60 return isset($string) ? trim($string) : null;60 return isset($string) ? html_entity_decode(trim($string)) : null; 61 61 } 62 62 }
Note: See TracChangeset
for help on using the changeset viewer.