mirror of
https://github.com/processwire/processwire.git
synced 2025-08-14 02:34:24 +02:00
Fix issue processwire/processwire-issues#81 where 2 translation phrases were on 1 line when they should have been on 2
This commit is contained in:
@@ -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'];
|
||||
|
Reference in New Issue
Block a user