Line 142 of metatag.install, which checks for runtime requirements related to the admin_language module, says:

    if (!module_exists('admin_language') && variable_get('admin_language_force_neutral', 0)) {

...this should of course be:

    if (module_exists('admin_language') && variable_get('admin_language_force_neutral', 0)) {
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

marcvangend created an issue. See original summary.

DamienMcKenna’s picture

Status: Active » Needs review
FileSize
7.7 KB

Doh!

DamienMcKenna’s picture

FileSize
566 bytes

Try that again, this time without all of the unrelated changes.

The last submitted patch, 2: metatag-n2580623-2.patch, failed testing.

DamienMcKenna’s picture

Status: Needs review » Fixed

Committed.

  • DamienMcKenna committed e0b64a4 on 7.x-1.x
    Issue #2580623 by marcvangend: Incorrect check for admin_language.
    
marcvangend’s picture

Thanks for the quick fix!

Status: Fixed » Closed (fixed)

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