mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 12:42:36 +01:00
bug fixes
This commit is contained in:
parent
b67beba7b2
commit
da29bd8900
@ -1,7 +1,7 @@
|
||||
# Invoice Ninja
|
||||
## Simple, Intuitive Invoicing
|
||||
|
||||
### [https://www.invoiceninja.com/rocksteady](https://www.invoiceninja.com/rocksteady)
|
||||
### [https://www.invoiceninja.com](https://www.invoiceninja.com)
|
||||
### Introduction
|
||||
|
||||
Most online invoicing sites are expensive. They shouldn't be. The aim of this project is to provide a free, open-source alternative. Additionally, the hope is this codebase will serve as a sample site for Laravel as well as other JavaScript technologies.
|
||||
|
@ -11,9 +11,9 @@ abstract class Mailer {
|
||||
'emails.'.$view.'_text'
|
||||
];
|
||||
|
||||
$view = 'emails.' . $view;
|
||||
//$view = 'emails.' . $view;
|
||||
|
||||
Mail::queue($view, $data, function($message) use ($toEmail, $fromEmail, $subject)
|
||||
Mail::queue($views, $data, function($message) use ($toEmail, $fromEmail, $subject)
|
||||
{
|
||||
$message->to($toEmail)->replyTo($fromEmail)->subject($subject);
|
||||
});
|
||||
|
@ -204,7 +204,7 @@ define('DEFAULT_INVOICE_NUMBER', '0001');
|
||||
define('RECENTLY_VIEWED_LIMIT', 8);
|
||||
define('LOGGED_ERROR_LIMIT', 100);
|
||||
define('RANDOM_KEY_LENGTH', 32);
|
||||
define('MAX_NUM_CLIENTS', 2000);
|
||||
define('MAX_NUM_CLIENTS', 1000);
|
||||
|
||||
define('INVOICE_STATUS_DRAFT', 1);
|
||||
define('INVOICE_STATUS_SENT', 2);
|
||||
|
@ -439,7 +439,7 @@
|
||||
*/
|
||||
@endif
|
||||
|
||||
@if (Session::has('message'))
|
||||
@if (false && Session::has('message'))
|
||||
setTimeout(function() {
|
||||
$('.alert-info').fadeOut();
|
||||
}, 3000);
|
||||
|
Loading…
Reference in New Issue
Block a user