removed some PPHPStorm warnings.

This commit is contained in:
tracer 2022-10-26 11:13:04 +02:00
parent e2da6000b3
commit 78f25fdfd3
1 changed files with 2 additions and 3 deletions

View File

@ -25,10 +25,10 @@
<td><input type="text" id="city_<?= $id ?>" value="<?= $address->getCity(); ?>" disabled></td>
<td><input type="text" id="phone_<?= $id ?>" value="<?= $address->getPhone(); ?>" disabled></td>
<td>
<input type="button" value="Edit" id="edit_button_<?= $id ?>" onclick="editAddress(<?= $id ?>)">
<input type="button" value="Edit" id="edit_button_<?= $id ?>" onclick="editAddress('<?= $id ?>')">
</td>
<td>
<input type="button" value="Delete" onclick="deleteAddress(<?= $id ?>)">
<input type="button" value="Delete" onclick="deleteAddress('<?= $id ?>')">
<input type="hidden" id="owner_<?= $id ?>" value="<?= $id ?>">
</td>
</tr>
@ -50,5 +50,4 @@
Your addresses will be listed soon
<?php endif; ?>
<?php include '_footer.html.php' ?>