Skip to content

Commit

Permalink
[NDB_BVL_Instrument] Fix addHourMinElement being never required (aces…
Browse files Browse the repository at this point in the history
…#9482)

Resolves addHourMinElement never being required due to the XIN rule
checking strictly for an empty string, excluding `NULL`
  • Loading branch information
victori444 authored Jan 9, 2025
1 parent 7ccabea commit 9d94422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/libraries/NDB_BVL_Instrument.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ abstract class NDB_BVL_Instrument extends NDB_Page

//If the answer is empty (or its a group and one of answers in the
//group is empty) then run the rules
if ($elvalue==="" || $flag==false) {
if ($elvalue=="" || $flag==false) {
if ($this->XINDebug) {
//debugging code
echo "<p><b>$elname</b><br> ";
Expand Down

0 comments on commit 9d94422

Please sign in to comment.