Issue #1736722 by dawehner, lund.mikkel: Fix default input_required text to not wrap the value with t().

8.0.x
Daniel Wehner 2012-08-19 12:09:02 +02:00 committed by Tim Plunkett
parent 9b242c4296
commit ea409c732e
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class InputRequired extends ExposedFormPluginBase {
function option_definition() { function option_definition() {
$options = parent::option_definition(); $options = parent::option_definition();
$options['text_input_required'] = array('default' => t('Select any filter and click on Apply to see results'), 'translatable' => TRUE); $options['text_input_required'] = array('default' => 'Select any filter and click on Apply to see results', 'translatable' => TRUE);
$options['text_input_required_format'] = array('default' => NULL); $options['text_input_required_format'] = array('default' => NULL);
return $options; return $options;
} }