1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

bug fixes

This commit is contained in:
Hillel Coren 2014-02-02 20:52:31 +02:00
parent 8d6b86b6ce
commit ff0d8c1696

View File

@ -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);
}
}