Mercurial > hg > isophonics-drupal-site
diff core/modules/node/src/NodeTranslationHandler.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children | af1871eacc83 |
line wrap: on
line diff
--- a/core/modules/node/src/NodeTranslationHandler.php Fri Feb 23 15:51:18 2018 +0000 +++ b/core/modules/node/src/NodeTranslationHandler.php Fri Feb 23 15:52:07 2018 +0000 @@ -39,10 +39,8 @@ } } if (isset($status_translatable)) { - foreach (['publish', 'unpublish', 'submit'] as $button) { - if (isset($form['actions'][$button])) { - $form['actions'][$button]['#value'] .= ' ' . ($status_translatable ? t('(this translation)') : t('(all translations)')); - } + if (isset($form['actions']['submit'])) { + $form['actions']['submit']['#value'] .= ' ' . ($status_translatable ? t('(this translation)') : t('(all translations)')); } } }