Merge pull request #123 from ThomasRubini/s_quantity

This commit is contained in:
Thomas Rubini 2023-01-26 16:38:37 +01:00 committed by GitHub
commit 7f72d9a9da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ $O_recipe = $A_view["RECIPE"];
<ul>
<?php
foreach($O_recipe->getIngredients() as $O_ingredient){
echo "<li> $O_ingredient->S_NAME: $O_ingredient->I_QUANTITY </li>";
echo "<li> $O_ingredient->S_NAME: $O_ingredient->S_QUANTITY </li>";
}
?>
</ul>