From c1d13632bbb57b78a4103a5010bd1037e375a4ed Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Sun, 12 Mar 2017 17:03:45 -0400 Subject: [PATCH] Set response code to 303 See Other Browsers such as Chrome ignore a Location header with a response code of 200 --- public/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/public/index.php b/public/index.php index e845970..82c2962 100644 --- a/public/index.php +++ b/public/index.php @@ -465,6 +465,7 @@ ))); header("Location: /admin/accounts?updatedId=" . $id . "#account-" . $id); + $app->response->setStatus(303); } });