diff --git a/Readme.md b/Readme.md index f304b65..285f7ab 100644 --- a/Readme.md +++ b/Readme.md @@ -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 ``` diff --git a/changelog.md b/changelog.md index 2dc1c85..a87250a 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/src/Resources/contao/dca/tl_invoice_settings.php b/src/Resources/contao/dca/tl_invoice_settings.php index 27de931..1ef4973 100755 --- a/src/Resources/contao/dca/tl_invoice_settings.php +++ b/src/Resources/contao/dca/tl_invoice_settings.php @@ -155,7 +155,7 @@ ( 'tl_class'=>'long', ), - 'sql' => "varchar(255) NOT NULL ''" + 'sql' => "varchar(255) NOT NULL default '' " ), 'html' => array ( @@ -169,7 +169,8 @@ 'allowHtml' => true, 'rte' => 'tinyMCE' ), - 'sql' => "text NULL"), + 'sql' => "text NULL" + ), 'invoiceTree' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_invoice_settings']['invoiceTree'],