Skip to content

Commit

Permalink
Fixed issue #12460: Filtering statistics based on numeric question de…
Browse files Browse the repository at this point in the history
…tails (e.g. "Number less than X") has no effect
  • Loading branch information
LouisGac committed Jun 7, 2017
1 parent b5cb35b commit c3e135f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -188,10 +188,10 @@
$myfield2="{$myfield}G";
$myfield3="{$myfield}L";
echo "\t<span class='smalltext'>".gT("Number greater than").":</span><br />\n"
.CHtml::textField($myfield2,isset($_POST[$myfield2])?$_POST[$myfield2]:'',array( 'onkeypress'=>"return goodchars(event,'0123456789.,')" ))
.CHtml::textField('N'.$myfield2,isset($_POST[$myfield2])?'N'.$_POST[$myfield2]:'',array( 'onkeypress'=>"return goodchars(event,'0123456789.,')" ))
."\t<br />\n"
."\t<span class='smalltext'>".gT("Number less than").":</span><br />\n"
.CHtml::textField($myfield3,isset($_POST[$myfield3])?$_POST[$myfield3]:'',array( 'onkeypress'=>"return goodchars(event,'0123456789.,')" ))
.CHtml::textField('N'.$myfield3,isset($_POST[$myfield3])?'N'.$_POST[$myfield3]:'',array( 'onkeypress'=>"return goodchars(event,'0123456789.,')" ))
."\t<br />\n";

//put field names into array
Expand Down

0 comments on commit c3e135f

Please sign in to comment.