fix ingredient in recipe/edit
This commit is contained in:
parent
daa00d6494
commit
0d74f4db90
@ -77,9 +77,9 @@ if ($O_recipe === null) {
|
|||||||
foreach($A_ingredients as $O_ingredient) {
|
foreach($A_ingredients as $O_ingredient) {
|
||||||
echo '<li>
|
echo '<li>
|
||||||
<label for="recipeIngredient'.$i.'">Ingrédient :</label>
|
<label for="recipeIngredient'.$i.'">Ingrédient :</label>
|
||||||
<input type="text" name="recipeIngredient'.$i.'" id="recipeIngredient'.$i.'" placeholder="Farine" value="'.$O_ingredient["NAME"].'">
|
<input type="text" name="recipeIngredient'.$i.'" id="recipeIngredient'.$i.'" placeholder="Farine" value="'.$O_ingredient->S_NAME.'">
|
||||||
<label for="recipeQuantity'.$i.'">Quantité :</label>
|
<label for="recipeQuantity'.$i.'">Quantité :</label>
|
||||||
<input type="text" name="recipeQuantity'.$i.'" id="recipeIngredient'.$i.'" placeholder="500g" value="'.$O_ingredient["QUANTITY"].'">
|
<input type="text" name="recipeQuantity'.$i.'" id="recipeIngredient'.$i.'" placeholder="500g" value="'.$O_ingredient->S_QUANTITY.'">
|
||||||
</li>';
|
</li>';
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user