Commit 2f20f6c6 authored by Damien McKenna's avatar Damien McKenna Committed by Damien McKenna
Browse files

Issue #3102582 by DamienMcKenna, dbourrion: Change uses of http:// to https://.

parent e1a287a5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ Metatag 8.x-1.x-dev, xxxx-xx-xx
#3105837 by Berdir: Remove metatag_install().
#3105343 by Kionn, DenisCi: Maintenance mode message shown on settings forms
  when site is not in maintenance mode.
#3102582 by DamienMcKenna, dbourrion: Change uses of http:// to https://.


Metatag 8.x-1.11, 2019-12-20
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ This will return an array with the following structure:
      '#tag' => 'link',
      '#attributes' => [
        'rel' => 'canonical',
        'href' => 'http://example.com/what',
        'href' => 'https://example.com/what',
      ],
    ],
    'description' => [
+2 −2
Original line number Diff line number Diff line
@@ -17,8 +17,8 @@
  ],
  "minimum-stability": "dev",
  "support": {
    "issues": "http://drupal.org/project/issues/metatag",
    "source": "http://cgit.drupalcode.org/metatag"
    "issues": "https://www.drupal.org/project/issues/metatag",
    "source": "https://git.drupalcode.org/project/metatag"
  },
  "require": {
    "drupal/token": "^1.0"
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ function metatag_requirements($phase) {
        'description' => t('The <a href="@module">Schema.org Metatag</a> module is highly recommended to add <a href="@jsonld">JSON-LD</a> -formatted <a href="@schema">schema.org</a> compatible data structures to the site.', [
          '@module' => 'https://www.drupal.org/project/schema_metatag',
          '@jsonld' => 'https://json-ld.org',
          '@schema' => 'http://schema.org',
          '@schema' => 'https://schema.org',
        ]),
      ];
    }
+1 −1
Original line number Diff line number Diff line
name: 'Metatag: Dublin Core'
type: module
description: Provides the fifteen <a href="http://dublincore.org/documents/dces/">Dublin Core Metadata Element Set 1.1</a> meta tags from the <a href="http://dublincore.org/">Dublin Core Metadata Institute</a>.
description: Provides the fifteen <a href="https://dublincore.org/documents/dces/">Dublin Core Metadata Element Set 1.1</a> meta tags from the <a href="https://dublincore.org/">Dublin Core Metadata Institute</a>.
core: 8.x
package: SEO
dependencies:
Loading