Skip to content

Commit

Permalink
Fixed issue #10976: Empty help string/info icon on numerical input with
Browse files Browse the repository at this point in the history
"integer only" constraint
  • Loading branch information
olleharstedt committed Apr 19, 2016
1 parent f7533fc commit c8f0e28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/helpers/expressions/em_manager_helper.php
Expand Up @@ -3288,11 +3288,11 @@ public function _CreateSubQLevelRelevanceAndValidationEqns($onlyThisQseq=NULL)
switch ($type)
{
case 'N':
$qtips['default']='';
unset($qtips['default']);
$qtips['value_integer']=$this->gT("Only an integer value may be entered in this field.");
break;
case 'K':
$qtips['default']='';
unset($qtips['default']);
$qtips['value_integer']=$this->gT("Only integer values may be entered in these fields.");
break;
default:
Expand Down

0 comments on commit c8f0e28

Please sign in to comment.