diff --git a/app/config/mail.php b/app/config/mail.php index 9840e66e9967..62dac9c3a572 100755 --- a/app/config/mail.php +++ b/app/config/mail.php @@ -28,7 +28,7 @@ return array( | */ - //'host' => '', + 'host' => '', /* |-------------------------------------------------------------------------- diff --git a/app/controllers/PaymentController.php b/app/controllers/PaymentController.php index 5765861a1535..5d2e6bc97a30 100755 --- a/app/controllers/PaymentController.php +++ b/app/controllers/PaymentController.php @@ -622,7 +622,7 @@ class PaymentController extends \BaseController } } catch (\Exception $e) { $errorMessage = trans('texts.payment_error'); - Session::flash('error', $errorMessage); + Session::flash('error', $errorMessage."

".$e->getMessage()); Utils::logError(Utils::getErrorString($e)); return Redirect::to('payment/'.$invitationKey) diff --git a/app/views/payments/payment.blade.php b/app/views/payments/payment.blade.php index 4f6c6661e912..788b34009bca 100755 --- a/app/views/payments/payment.blade.php +++ b/app/views/payments/payment.blade.php @@ -236,7 +236,6 @@ header h3 em {

{{ Former::select('expiration_year')->placeholder(trans('texts.expiration_year')) - ->addOption('2014', '2014') ->addOption('2015', '2015') ->addOption('2016', '2016') ->addOption('2017', '2017') @@ -246,7 +245,8 @@ header h3 em { ->addOption('2021', '2021') ->addOption('2022', '2022') ->addOption('2023', '2023') - ->addOption('2024', '2024')->raw(); + ->addOption('2024', '2024') + ->addOption('2025', '2025')->raw(); }}