Issue #1736722 by dawehner, lund.mikkel: Fix default input_required text to not wrap the value with t().
parent
9b242c4296
commit
ea409c732e
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue