diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-07-30 14:42:00 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-07-30 14:42:00 +0000 |
commit | 1742a245acd15db2d017b5f443a316fc624d8868 (patch) | |
tree | 6dae847a8ef5c72cd82833f96a77ade553fc23dc /www/add.php | |
parent | 374b4419d2ff88bfbb5cfdf2ab97bd9ed885fdaf (diff) |
Changed to a single record display to remove the hideous problem with the page
jumping.
Diffstat (limited to 'www/add.php')
-rw-r--r-- | www/add.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/www/add.php b/www/add.php index 2ecff7b..8525781 100644 --- a/www/add.php +++ b/www/add.php @@ -45,6 +45,7 @@ try $id = $db->lastInsertId(); $result["id"] = $id; + $result["group"] = $group; $update = $db->prepare("UPDATE pm_store SET display = :id WHERE id = :id"); $update->bindParam(":id", $id); |