Skip to content

Commit

Permalink
Fixed issue #11184: Date question are not validated
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac committed May 25, 2016
1 parent de5aef6 commit bb05903
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/expressions/em_manager_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -1608,7 +1608,7 @@ public function _CreateSubQLevelRelevanceAndValidationEqns($onlyThisQseq=NULL)
}

$sq_name = ($this->sgqaNaming)?$sq['rowdivid'].".NAOK":$sq['varName'].".NAOK";
//$sq_name = '(is_empty(' . $sq_name . ') || ('. $sq_name . ' >= date("Y-m-d H:i", strtotime(' . $date_min . ')) ))';
$sq_name = '(is_empty(' . $sq_name . ') || ('. $sq_name . ' >= date("Y-m-d H:i", strtotime(' . $date_min . ')) ))';
$subqValidSelector = '';
break;
default:
Expand Down
6 changes: 6 additions & 0 deletions templates/default/css/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -934,3 +934,9 @@ label, th {
-o-hyphens: auto;
hyphens: auto;
}

.xdebug-var-dump {
z-index: 10000;
position: relative;
top: 10px;
}

0 comments on commit bb05903

Please sign in to comment.