diff options
author | ivan <ivan> | 2009-10-08 01:15:06 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-10-08 01:15:06 +0000 |
commit | e3e8d316738336108b9b9af65d9adeb2ed085696 (patch) | |
tree | 103977fdf587423a6ac1eb03745ccb15174e86db /conf/invoice_html | |
parent | eae101004801019c942e9dfccbea50a8165f5d6d (diff) |
conf switches to turn on smaller notes and footer sections with stock templates, RT#5218
Diffstat (limited to 'conf/invoice_html')
-rw-r--r-- | conf/invoice_html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/conf/invoice_html b/conf/invoice_html index 7ee0fdc19..b7f7b9789 100644 --- a/conf/invoice_html +++ b/conf/invoice_html @@ -221,9 +221,15 @@ </table> <br><br> -<%= length($summary) ? '' : $notes %> +<%= length($summary) + ? '' + : ( $smallernotes + ? '<FONT SIZE="-1">'.$notes.'</FONT>' + : $notes + ) +%> <hr NOSHADE SIZE=2 COLOR="#000000"> - <p align="center"><%= $footer %> + <p align="center" <%= $smallerfooter ? 'STYLE="font-size:75%;"' : '' %>><%= $footer %> </td></tr></table> |