Skip to content

Commit 6c30b1c

Browse files
authored
[NDB_BVL_Instrument] Add null value to examiner array (#7847)
This adds an empty value to the array of examiner names. This was mistakenly taken out in #7462, and is causing the first value to be selected by default in instruments.
1 parent 31fc22f commit 6c30b1c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

php/libraries/NDB_BVL_Instrument.class.inc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,9 @@ abstract class NDB_BVL_Instrument extends NDB_Page
10851085
'examinerID'
10861086
);
10871087
}
1088-
$examiners = [];
1088+
$examiners = [
1089+
null => ''
1090+
];
10891091
if (is_array($results) && !empty($results)) {
10901092
foreach ($results AS $eid => $row) {
10911093
$name = $row['full_name'];

0 commit comments

Comments
 (0)