From facc671e8d2135b5c47d5a001fc11f0d69f60f16 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Mon, 14 Nov 2016 06:42:35 -0500 Subject: [PATCH] Fix issue processwire/processwire-issues#81 where 2 translation phrases were on 1 line when they should have been on 2 --- .../Inputfield/InputfieldSelector/InputfieldSelector.module | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module b/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module index 35f46258..650de40f 100644 --- a/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module +++ b/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module @@ -1228,7 +1228,10 @@ class InputfieldSelector extends Inputfield implements ConfigurableModule { } else if($type == 'checkbox') { // populate operators and options for the checkbox type $operators = $this->operatorsByType['checkbox']; - $options = array(0 => $this->_('Not Checked'), 1 => $this->_('Checked')); + $options = array( + 0 => $this->_('Not Checked'), + 1 => $this->_('Checked') + ); } else if($_type == 'page') { $operators = $this->operatorsByType['page'];