diff --git a/README.md b/README.md index a35cc3f2a58c..e125d71c86c5 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/app/ninja/mailers/Mailer.php b/app/ninja/mailers/Mailer.php index 0a3f6dd07710..23bffa4a5421 100755 --- a/app/ninja/mailers/Mailer.php +++ b/app/ninja/mailers/Mailer.php @@ -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); }); diff --git a/app/routes.php b/app/routes.php index cab01217bbea..3b79be97f88f 100755 --- a/app/routes.php +++ b/app/routes.php @@ -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); diff --git a/app/views/header.blade.php b/app/views/header.blade.php index 124ffb99dd5e..27d1e55f21b8 100755 --- a/app/views/header.blade.php +++ b/app/views/header.blade.php @@ -439,7 +439,7 @@ */ @endif - @if (Session::has('message')) + @if (false && Session::has('message')) setTimeout(function() { $('.alert-info').fadeOut(); }, 3000);