1
0
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:
Ryan Cramer
2016-11-14 06:42:35 -05:00
parent 4b800adb5a
commit facc671e8d

View File

@@ -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'];