From d9a16a2f0b729052c518bc9bfe146cd00bf7154c Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Mon, 30 Jan 2017 20:12:57 -0500 Subject: [PATCH] amend success message --- controller/action/AcquisitionActions.class.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/controller/action/AcquisitionActions.class.php b/controller/action/AcquisitionActions.class.php index fec82723..4df48651 100644 --- a/controller/action/AcquisitionActions.class.php +++ b/controller/action/AcquisitionActions.class.php @@ -155,8 +155,7 @@ class AcquisitionActions extends Actions file_put_contents($dataFile, json_encode($existing)); Session::setFlash(Session::KEY_DEVELOPER_CREDITS_SUCCESS, - 'Send credits to GitHub user ' . $userResponseData['login'] . ' (' . $userResponseData['email'] . ') at wallet address ' . - $walletAddress); + 'Credits on their way to address ' . $walletAddress . ' for GitHub user ' . $userResponseData['login'] . '. It may take up to a minute for them to arrive.'); } else { @@ -182,4 +181,4 @@ class AcquisitionActions extends Actions } return Controller::redirect('/developer-program'); } -} \ No newline at end of file +}