Update to Drupal 8.2.6. For more information, see https://www.drupal.org/project/drupal/releases/8.2.6

This commit is contained in:
Pantheon Automation 2017-02-02 16:28:38 -08:00 committed by Greg Anderson
parent db56c09587
commit f1e72395cb
588 changed files with 26857 additions and 2777 deletions

View file

@ -12,3 +12,4 @@ process:
destination:
plugin: config
config_name: system.maintenance
translations: true

View file

@ -36,3 +36,4 @@ process:
destination:
plugin: config
config_name: system.site
translations: true

View file

@ -66,3 +66,4 @@ process:
destination:
plugin: config
config_name: user.mail
translations: true

View file

@ -27,3 +27,4 @@ process:
destination:
plugin: config
config_name: user.settings
translations: true

View file

@ -648,7 +648,7 @@ class ConfigTranslationUiTest extends WebTestBase {
foreach ($languages as $langcode => $data) {
// Import a .po file to add a new language with a given number of plural forms
$name = tempnam('temporary://', $langcode . '_') . '.po';
$name = \Drupal::service('file_system')->tempnam('temporary://', $langcode . '_') . '.po';
file_put_contents($name, $this->getPoFile($data['plurals']));
$this->drupalPostForm('admin/config/regional/translate/import', array(
'langcode' => $langcode,
@ -684,7 +684,7 @@ class ConfigTranslationUiTest extends WebTestBase {
// First import a .po file with multiple plural forms.
// This will also automatically add the 'sl' language.
$name = tempnam('temporary://', "sl_") . '.po';
$name = \Drupal::service('file_system')->tempnam('temporary://', "sl_") . '.po';
file_put_contents($name, $this->getPoFile(4));
$this->drupalPostForm('admin/config/regional/translate/import', array(
'langcode' => 'sl',