Plugin Directory

Changeset 2521330


Ignore:
Timestamp:
04/26/2021 09:33:18 AM (5 years ago)
Author:
ash_hitch
Message:

Update to version 4.14.0 from GitHub

Location:
add-wpgraphql-seo
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • add-wpgraphql-seo/tags/4.14.0/CHANGELOG.md

    r2511571 r2521330  
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    77
    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
    915
    1016### Changed
     
    1218-   Version bump again, release failed
    1319
    14 ## [4.13.0] - 2021-05-06
     20## [4.13.0] - 2021-04-06
    1521
    1622### Added
  • add-wpgraphql-seo/tags/4.14.0/readme.txt

    r2511571 r2521330  
    55Tested up to: 5.7
    66Requires PHP: 7.1
    7 Stable tag: 4.13.1
     7Stable tag: 4.14.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • add-wpgraphql-seo/tags/4.14.0/wp-graphql-yoast-seo.php

    r2511571 r2521330  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.13.1
     11 * Version:         4.14.0
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    5858        function wp_gql_seo_format_string($string)
    5959        {
    60             return isset($string) ? trim($string) : null;
     60            return isset($string) ? html_entity_decode(trim($string)) : null;
    6161        }
    6262    }
  • add-wpgraphql-seo/trunk/CHANGELOG.md

    r2511571 r2521330  
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    77
    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
    915
    1016### Changed
     
    1218-   Version bump again, release failed
    1319
    14 ## [4.13.0] - 2021-05-06
     20## [4.13.0] - 2021-04-06
    1521
    1622### Added
  • add-wpgraphql-seo/trunk/readme.txt

    r2511571 r2521330  
    55Tested up to: 5.7
    66Requires PHP: 7.1
    7 Stable tag: 4.13.1
     7Stable tag: 4.14.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • add-wpgraphql-seo/trunk/wp-graphql-yoast-seo.php

    r2511571 r2521330  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.13.1
     11 * Version:         4.14.0
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    5858        function wp_gql_seo_format_string($string)
    5959        {
    60             return isset($string) ? trim($string) : null;
     60            return isset($string) ? html_entity_decode(trim($string)) : null;
    6161        }
    6262    }
Note: See TracChangeset for help on using the changeset viewer.