Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Dev: remove default qtip id num_value_int_only is set
Dev: fix language string for integer value only
  • Loading branch information
Shnoulle committed Oct 21, 2013
1 parent 2ae2c88 commit 80be603
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion application/helpers/expressions/em_manager_helper.php
Expand Up @@ -2697,7 +2697,19 @@ public function _CreateSubQLevelRelevanceAndValidationEqns($onlyThisQseq=NULL)
// integer for numeric
if ($num_value_int_only!='')
{
$qtips['value_integer']=$this->gT("Only integer value");
switch ($type)
{
case 'N':
$qtips['default']='';
$qtips['value_integer']=$this->gT("Only integer value may be entered in this field.");
break;
case 'K':
$qtips['default']='';
$qtips['value_integer']=$this->gT("Only integer value may be entered in this fields.");
break;
default:
break;
}
}

// min/max value for each numeric entry - for multi-flexible question type
Expand Down

0 comments on commit 80be603

Please sign in to comment.