Merge pull request #95 from ThomasRubini/notes_displaying

added missing max value of a note when displaying it
This commit is contained in:
Marla 2023-01-25 20:35:17 +01:00 committed by GitHub
commit cb4cd055ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,6 @@ $O_recipe = $A_view["RECIPE"];
<img src="<?= $O_recipe->getImgLink() ?>" alt="<?= $O_recipe->S_NAME ?>">
<section>
<h2> <?= $O_recipe->S_NAME ?> </h2>
<p> <?= $O_recipe->queryNote() ?> </p>
<p> <?= $O_recipe->queryNote() ?>/5 </p>
</section>
</a>