line 408 of metatag_opengraph.metatag.inc

$info['tags']['og:audio:secure_url'] = array(
    'label' => t('Audio secure URL'),
    'description' => t('The secure URL to an audio file that complements this object. All "http://" URLs will automatically be converted to "https://".'),
    'weight' => ++$weight,
    'devel_generate' => array(
      'type' => 'url',
    ),
  ) + $og_defaults;

should be

$info['tags']['og:audio:secure_url'] = array(
    'label' => t('Audio secure URL'),
    'description' => t('The secure URL to an audio file that complements this object. All "http://" URLs will automatically be converted to "https://".'),
    'weight' => ++$weight,
    'secure' => TRUE,
    'devel_generate' => array(
      'type' => 'url',
    ),
  ) + $og_defaults;
CommentFileSizeAuthor
#3 metatag-n2579201-3.patch1.25 KBdamienmckenna

Comments

lesonunique created an issue. See original summary.

damienmckenna’s picture

damienmckenna’s picture

Status: Active » Needs review
StatusFileSize
new1.25 KB

Like this?

damienmckenna’s picture

Status: Needs review » Fixed

Committed. Thanks.

  • DamienMcKenna committed b589adc on 7.x-1.x
    Issue #2579201 by lesonunique, DamienMcKenna: Missing 'secure' option on...

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.