Plugin Directory

Changeset 2543468


Ignore:
Timestamp:
06/07/2021 07:03:26 AM (5 years ago)
Author:
ash_hitch
Message:

Update to version 4.14.2 from GitHub

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

Legend:

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

    r2543466 r2543468  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [4.14.2] - 2021-06-07
     9
     10### Changed
     11
     12-   Guard against undefined meta properties
    713
    814## [4.14.1] - 2021-06-01
  • add-wpgraphql-seo/tags/4.14.2/readme.txt

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

    r2543466 r2543468  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.14.1
     11 * Version:         4.14.2
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    11091109                                    ->description
    11101110                            ),
    1111                             'focuskw' => wp_gql_seo_format_string(
    1112                                 $meta['wpseo_focuskw']
    1113                             ),
    1114                             'metaKeywords' => wp_gql_seo_format_string(
    1115                                 $meta['wpseo_metakeywords']
    1116                             ),
     1111                            'focuskw' => isset($meta['wpseo_focuskw'])
     1112                                ? wp_gql_seo_format_string($meta['wpseo_focuskw'])
     1113                                : $meta['wpseo_focuskw'],
     1114                            'metaKeywords' => isset($meta['wpseo_metakeywords'])
     1115                                ? wp_gql_seo_format_string(
     1116                                    $meta['wpseo_metakeywords']
     1117                                )
     1118                                : null,
    11171119                            'metaRobotsNoindex' => $robots['index'],
    11181120                            'metaRobotsNofollow' => $robots['follow'],
     
    11751177                                    absint($meta['wpseo_twitter-image-id'])
    11761178                                ),
    1177                             'canonical' => wp_gql_seo_format_string(
    1178                                 $meta['canonical']
    1179                             ),
     1179                            'canonical' => isset($meta['canonical'])
     1180                                ? wp_gql_seo_format_string($meta['canonical'])
     1181                                : null,
    11801182                            'breadcrumbs' => YoastSEO()->meta->for_term(
    11811183                                $term->term_id
  • add-wpgraphql-seo/trunk/CHANGELOG.md

    r2543466 r2543468  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [4.14.2] - 2021-06-07
     9
     10### Changed
     11
     12-   Guard against undefined meta properties
    713
    814## [4.14.1] - 2021-06-01
  • add-wpgraphql-seo/trunk/readme.txt

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

    r2543466 r2543468  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.14.1
     11 * Version:         4.14.2
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    11091109                                    ->description
    11101110                            ),
    1111                             'focuskw' => wp_gql_seo_format_string(
    1112                                 $meta['wpseo_focuskw']
    1113                             ),
    1114                             'metaKeywords' => wp_gql_seo_format_string(
    1115                                 $meta['wpseo_metakeywords']
    1116                             ),
     1111                            'focuskw' => isset($meta['wpseo_focuskw'])
     1112                                ? wp_gql_seo_format_string($meta['wpseo_focuskw'])
     1113                                : $meta['wpseo_focuskw'],
     1114                            'metaKeywords' => isset($meta['wpseo_metakeywords'])
     1115                                ? wp_gql_seo_format_string(
     1116                                    $meta['wpseo_metakeywords']
     1117                                )
     1118                                : null,
    11171119                            'metaRobotsNoindex' => $robots['index'],
    11181120                            'metaRobotsNofollow' => $robots['follow'],
     
    11751177                                    absint($meta['wpseo_twitter-image-id'])
    11761178                                ),
    1177                             'canonical' => wp_gql_seo_format_string(
    1178                                 $meta['canonical']
    1179                             ),
     1179                            'canonical' => isset($meta['canonical'])
     1180                                ? wp_gql_seo_format_string($meta['canonical'])
     1181                                : null,
    11801182                            'breadcrumbs' => YoastSEO()->meta->for_term(
    11811183                                $term->term_id
Note: See TracChangeset for help on using the changeset viewer.