From 2109351f1558b7328e7b4756aa24982b380a8a40 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Thu, 10 Jan 2013 12:01:58 +0000 Subject: [PATCH] Issue #1391856 by mariacha1, dawehner: Don't mark field->options['alter']['target'] as translatable. --- .../lib/Drupal/views/Plugin/views/field/FieldPluginBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php index a8cd71c0b662..2c866d315f38 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php @@ -424,7 +424,7 @@ protected function defineOptions() { 'link_class' => array('default' => ''), 'prefix' => array('default' => '', 'translatable' => TRUE), 'suffix' => array('default' => '', 'translatable' => TRUE), - 'target' => array('default' => '', 'translatable' => TRUE), + 'target' => array('default' => ''), 'nl2br' => array('default' => FALSE, 'bool' => TRUE), 'max_length' => array('default' => ''), 'word_boundary' => array('default' => TRUE, 'bool' => TRUE), -- GitLab