1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

bug fixes

This commit is contained in:
Hillel Coren 2014-02-02 16:33:08 +02:00
parent 56bf3c8799
commit 08213f61c3
7 changed files with 13 additions and 13 deletions

View File

@ -87,7 +87,7 @@ return array(
|
|
*/
'signup_cache' => 120,
'signup_cache' => 0,
/*
|--------------------------------------------------------------------------

View File

@ -391,7 +391,7 @@ class ConfideSetupUsersTable extends Migration {
$t->softDeletes();
$t->string('product_key');
$t->string('notes');
$t->text('notes');
$t->decimal('cost', 13, 4);
$t->decimal('qty', 13, 4);

View File

@ -37,11 +37,11 @@ class UserMailer extends Mailer {
}
else if ($type == 'sent')
{
$subject = 'sent to';
$action = 'sent to';
}
else
{
$subject = 'viewed by';
$action = 'viewed by';
}
$subject = "Invoice {$invoice->invoice_number} was $action {$invoice->client->getDisplayName()}";

View File

@ -184,7 +184,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', 3);
define('MAX_NUM_CLIENTS', 2000);
define('INVOICE_STATUS_DRAFT', 1);
define('INVOICE_STATUS_SENT', 2);

View File

@ -70,7 +70,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
{{ link_to('/', 'Invoice Ninja', array('class'=>'navbar-brand')) }}
<a href="{{ URL::to('/rocksteady') }}" class='navbar-brand'>Invoice Ninja <sup><small>BETA</small></sup></a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-1">

View File

@ -20,7 +20,7 @@
<div class="row" style="min-height:195px" onkeypress="formEnterClick(event)">
<div class="col-md-5" id="col_1">
@if ($invoice && $invoice->isSent())
@if ($invoice)
<div class="form-group">
<label for="client" class="control-label col-lg-4 col-sm-4">Client</label>
<div class="col-lg-8 col-sm-8" style="padding-top: 7px">
@ -38,7 +38,7 @@
</div>
</div>
@if ($invoice && $invoice->isSent())
@if ($invoice)
</div>
@endif

View File

@ -98,7 +98,7 @@
<div class="box">
<div class="icon"><img src="images/icon-free.png"></div>
<h2>100% FREE, ALWAYS</h2>
<p>Invoicing with no monthly fee, because you have enough bills already! Its free, now and forever! Quality invoicing, build business and get paid.</p>
<p>Invoicing with no monthly fee, because you have enough bills already! Free, now and forever! Quality invoicing to build your business and get paid.</p>
</div>
</div>
@ -115,7 +115,7 @@
<div class="box">
<div class="icon"><img src="images/icon-pdf.png"></div>
<h2>LIVE .PDF VIEW</h2>
<p>Beautiful email-ready .PDF invoices created instantly as you type. Our Save & send functionality to saves you time and impresses clients.</p>
<p>Create beautiful email-ready .PDF invoices created instantly as you type. Our Save & send feature saves you time and impresses clients.</p>
</div>
</div>
@ -124,7 +124,7 @@
<div class="icon"><img src=
"images/icon-payment.png"></div>
<h2>ONLINE PAYMENTS</h2>
<p>PayPal? Authorize.Net? Stripe? We support many payment technologies and if you need help well lend a hand (were pretty friendly).</p>
<p>PayPal? Authorize.Net? Stripe? We support many payment technologies and if you need help or advise well lend a hand (were pretty friendly).</p>
</div>
</div>
</div>
@ -147,7 +147,7 @@
<section class="hero2">
<div class="container">
<div class="caption">
<h1>Wherever you are, invoice the easy way.</h1>
<h1>SIMPLE, INTUITIVE INVOICING</h1>
</div>
</div>
</section>