X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fprofileformaction.php;h=328a6680177022324db5d3623326e6f91b487063;hb=44ebf768ba60377b29b6c765020410a0c115e91a;hp=75f4359c9d8dd6c8b7c8780d4eff21cdde867c4e;hpb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;p=quix0rs-gnu-social.git diff --git a/lib/profileformaction.php b/lib/profileformaction.php index 75f4359c9d..328a668017 100644 --- a/lib/profileformaction.php +++ b/lib/profileformaction.php @@ -101,7 +101,11 @@ class ProfileFormAction extends RedirectingAction parent::handle($args); if ($_SERVER['REQUEST_METHOD'] == 'POST') { - $this->handlePost(); + try { + $this->handlePost(); + } catch (AlreadyFulfilledException $e) { + // 'tis alright + } $this->returnToPrevious(); } }