Skip to content

Commit

Permalink
[imaging_manager] Fixing error in generate_tables_sql_and_testNames tool
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandraLivadas committed Mar 21, 2024
1 parent 659cc70 commit e5e588c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate_tables_sql_and_testNames.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
$pages = [];
foreach ($instruments as $instrument) {
$catId = "";
$output = "":
$items = explode("\n", trim($instrument));
foreach ($items as $item) {
$paramId = "";
$output = "";
$bits = explode("{@}", trim($item));
if (preg_match("/Examiner[0-9]*/", $bits[1])) {
continue;
Expand Down

0 comments on commit e5e588c

Please sign in to comment.