Skip to content

Commit

Permalink
WIP QE-945
Browse files Browse the repository at this point in the history
  • Loading branch information
ptelu committed May 15, 2024
1 parent 316655e commit 6673007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/services/ResponseArchiveService.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function searchQuestion(int $surveyId, int $questionCode): bool
$matches = array();
if (preg_match($pattern, (string)$name, $matches)) {
// Column name is SIDXGIDXQID
$archiveQid = $matches[3];
$archiveQuestionCode = $matches[3];
if ($archiveQuestionCode=== $questionCode) {
return true;
}
Expand Down

0 comments on commit 6673007

Please sign in to comment.