diff --git a/core/modules/image/lib/Drupal/image/ImageStyleFormController.php b/core/modules/image/lib/Drupal/image/ImageStyleFormController.php index d411408..9e16e48 100644 --- a/core/modules/image/lib/Drupal/image/ImageStyleFormController.php +++ b/core/modules/image/lib/Drupal/image/ImageStyleFormController.php @@ -39,6 +39,9 @@ public function form(array $form, array &$form_state) { ); if (!$style->IsNew()) { + // @todo Remove drupal_set_title() in http://drupal.org/node/1981644 + $title = t('Edit style %name', array('%name' => $style->label())); + drupal_set_title($title, PASS_THROUGH); $form['#tree'] = TRUE; $form['#attached']['css'][drupal_get_path('module', 'image') . '/image.admin.css'] = array();