Improve wish autofill

This commit is contained in:
Jay Trees 2022-03-07 10:37:53 +01:00
parent 68a3d071a6
commit 946e476c23

View file

@ -22,6 +22,7 @@ if ('POST' === $_SERVER['REQUEST_METHOD'] && count($_POST) >= 0) {
WHERE `id` = ' . trim($_POST['wish_id']) . ';');
$wish = new Wish($_GET['id'], false);
$page = new Page(__FILE__, $wish->title);
$page->messages[] = Page::success('Wish successfully updated.', 'Success');
}