Skip to content

Commit

Permalink
Fix template variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek authored Oct 27, 2023
1 parent 1aca3d9 commit 91cc066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/PackageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@ public function securityAdvisoryAction(Request $request, string $id): Response
throw new NotFoundHttpException();
}

return $this->render('package/security_advisory.html.twig', ['advisories' => $securityAdvisories, 'id' => $id]);
return $this->render('package/security_advisory.html.twig', ['securityAdvisories' => $securityAdvisories, 'id' => $id]);
}

private function createAddMaintainerForm(Package $package): FormInterface
Expand Down

0 comments on commit 91cc066

Please sign in to comment.