Skip to content

Commit

Permalink
Merge branch 'fix/tl_settings'
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHell committed Oct 3, 2018
2 parents 4b4f3c4 + e36f783 commit dbc04cf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
11 changes: 7 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
Contao 4 - Invoice Bundle
---

## Deprecated
> This plugin will not longer supported or developed. If you have any questions, write me a message.
### Information
```
Developer: Tom Ganske, CT-EYE
Website: http://www.ct-eye.com
Year: 2017
Version: 0.0.5
Developer: Tom Hell, CT-EYE
Website: https://www.ct-eye.com
Year: 2017 - 2018
Version: 0.0.6
CMS: Contao 4 Bundle
Status: deprecated
```


Expand Down
8 changes: 7 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Contao 4 - Invoices Bundle

###### Changelog 2017
## Changelog 2018

#### 0.0.6 (2018-10-03)
- fix sql statement by missing default value in tl_settings


## Changelog 2017

#### 0.0.5 (2017-07-16)
- fix invoice Template
Expand Down
5 changes: 3 additions & 2 deletions src/Resources/contao/dca/tl_invoice_settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
(
'tl_class'=>'long',
),
'sql' => "varchar(255) NOT NULL ''"
'sql' => "varchar(255) NOT NULL default '' "
),
'html' => array
(
Expand All @@ -169,7 +169,8 @@
'allowHtml' => true,
'rte' => 'tinyMCE'
),
'sql' => "text NULL"),
'sql' => "text NULL"
),
'invoiceTree' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_invoice_settings']['invoiceTree'],
Expand Down

0 comments on commit dbc04cf

Please sign in to comment.