bug fixes
This commit is contained in:
parent
8d6b86b6ce
commit
ff0d8c1696
1 changed files with 4 additions and 1 deletions
|
|
@ -237,8 +237,9 @@ class PaymentController extends \BaseController
|
|||
|
||||
$response->redirect();
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
Session::flash('error', $response->getMessage());
|
||||
return Utils::fatalError('Sorry, there was an error processing your payment. Please try again later.<p>', $response->getMessage());
|
||||
}
|
||||
}
|
||||
|
|
@ -307,11 +308,13 @@ class PaymentController extends \BaseController
|
|||
}
|
||||
else
|
||||
{
|
||||
Session::flash('error', $response->getMessage());
|
||||
return Utils::fatalError('Sorry, there was an error processing your payment. Please try again later.<p>', $response->getMessage());
|
||||
}
|
||||
}
|
||||
catch (\Exception $e)
|
||||
{
|
||||
Session::flash('error', $e->getMessage());
|
||||
return Utils::fatalError('Sorry, there was an error processing your payment. Please try again later.<p>', $e);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue