mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Bug fixes
This commit is contained in:
parent
f50bf0f823
commit
856b7977d2
@ -28,7 +28,7 @@ return array(
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//'host' => '',
|
'host' => '',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -622,7 +622,7 @@ class PaymentController extends \BaseController
|
|||||||
}
|
}
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
$errorMessage = trans('texts.payment_error');
|
$errorMessage = trans('texts.payment_error');
|
||||||
Session::flash('error', $errorMessage);
|
Session::flash('error', $errorMessage."<p>".$e->getMessage());
|
||||||
Utils::logError(Utils::getErrorString($e));
|
Utils::logError(Utils::getErrorString($e));
|
||||||
|
|
||||||
return Redirect::to('payment/'.$invitationKey)
|
return Redirect::to('payment/'.$invitationKey)
|
||||||
|
@ -236,7 +236,6 @@ header h3 em {
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
{{ Former::select('expiration_year')->placeholder(trans('texts.expiration_year'))
|
{{ Former::select('expiration_year')->placeholder(trans('texts.expiration_year'))
|
||||||
->addOption('2014', '2014')
|
|
||||||
->addOption('2015', '2015')
|
->addOption('2015', '2015')
|
||||||
->addOption('2016', '2016')
|
->addOption('2016', '2016')
|
||||||
->addOption('2017', '2017')
|
->addOption('2017', '2017')
|
||||||
@ -246,7 +245,8 @@ header h3 em {
|
|||||||
->addOption('2021', '2021')
|
->addOption('2021', '2021')
|
||||||
->addOption('2022', '2022')
|
->addOption('2022', '2022')
|
||||||
->addOption('2023', '2023')
|
->addOption('2023', '2023')
|
||||||
->addOption('2024', '2024')->raw();
|
->addOption('2024', '2024')
|
||||||
|
->addOption('2025', '2025')->raw();
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user