Bug fixes

This commit is contained in:
Hillel Coren 2015-02-26 17:42:07 +02:00
parent f50bf0f823
commit 856b7977d2
3 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ return array(
|
*/
//'host' => '',
'host' => '',
/*
|--------------------------------------------------------------------------

View File

@ -622,7 +622,7 @@ class PaymentController extends \BaseController
}
} catch (\Exception $e) {
$errorMessage = trans('texts.payment_error');
Session::flash('error', $errorMessage);
Session::flash('error', $errorMessage."<p>".$e->getMessage());
Utils::logError(Utils::getErrorString($e));
return Redirect::to('payment/'.$invitationKey)

View File

@ -236,7 +236,6 @@ header h3 em {
</div>
<div class="col-md-6">
{{ 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();
}}
</div>
</div>