mirror of
https://github.com/processwire/processwire.git
synced 2025-08-18 20:41:16 +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') {
|
} else if($type == 'checkbox') {
|
||||||
// populate operators and options for the checkbox type
|
// populate operators and options for the checkbox type
|
||||||
$operators = $this->operatorsByType['checkbox'];
|
$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') {
|
} else if($_type == 'page') {
|
||||||
$operators = $this->operatorsByType['page'];
|
$operators = $this->operatorsByType['page'];
|
||||||
|
Reference in New Issue
Block a user