replace I_QUANTITY with S_QUANTITY

This commit is contained in:
Thomas Rubini 2023-01-26 16:38:22 +01:00
parent 9a0e6a542f
commit 8359a8b19d
No known key found for this signature in database
GPG Key ID: C7D287C8C1CAC373

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>