Skip to content

Commit

Permalink
Fixed issue #6715: Minimum number of files to upload cannot be an exp…
Browse files Browse the repository at this point in the history
…ression
  • Loading branch information
c-schmitz committed Oct 18, 2012
1 parent 916d8b4 commit 194f04f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/helpers/common_helper.php
Expand Up @@ -4235,7 +4235,7 @@ function questionAttributes($returnByName=false)
'category'=>$clang->gT('Other'),
'sortorder'=>130,
"inputtype"=>"text",
'default'=>1,
'default'=>'1',
"help"=>$clang->gT("Maximum number of files that the participant can upload for this question"),
"caption"=>$clang->gT("Max number of files"));

Expand All @@ -4244,7 +4244,7 @@ function questionAttributes($returnByName=false)
'category'=>$clang->gT('Other'),
'sortorder'=>132,
"inputtype"=>"text",
'default'=>0,
'default'=>'0',
"help"=>$clang->gT("Minimum number of files that the participant must upload for this question"),
"caption"=>$clang->gT("Min number of files"));

Expand Down

0 comments on commit 194f04f

Please sign in to comment.