Skip to content

Commit

Permalink
Version 6.3.1: Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
bihor committed Dec 21, 2023
1 parent b7c2b2f commit c6ede56
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Classes/Domain/Repository/LogRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ function updateInTtAddress($address, $mode, $tableUid, $salutation = '')
* @param int $tableUid externe uid
* @param string $extension mail or luxletter
*/
function updateInFeUsers($address, $tableUid, $extension)
function updateInFeUsers($address, $tableUid, $extension = 'luxletter')
{
$timestamp = time();
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('fe_users');
Expand Down Expand Up @@ -416,7 +416,7 @@ function updateInFeUsers($address, $tableUid, $extension)
* @param string $table tt_address or fe_users
* @param string $extension luxletter or mail
*/
function deleteExternalUser($uid, $mode, $dmCatArr = [], $table = 'tt_address', $extension)
function deleteExternalUser($uid, $mode, $dmCatArr = [], $table = 'tt_address', $extension = 'luxletter')
{
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($table);
if ($mode == 2) {
Expand Down
5 changes: 4 additions & 1 deletion Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,7 @@ Version 6.2.0:
- New setting: newsletterExtension (mail or luxletter).

Version 6.3.0:
- New action: direct unsubscribe via Mail-link and new setting: authCodeFields.
- New action: direct unsubscribe via Mail-link and new setting: authCodeFields.

Version 6.3.1:
- Bugfix: Luxletter is now the default newsletter-extension - to prevent a PHP warning.
2 changes: 1 addition & 1 deletion Documentation/Configuration/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Properties for settings
Property Data type Description Default
================================= =========== ===================================================================== =================================
table string tt_address, fe_users or none (empty value) supported tt_address
newsletterExtension string luxletter (default for fe_users) or mail (default for tt_address)
newsletterExtension string luxletter (default for fe_users) or mail (default for tt_address) empty = luxletter
optionalFields string Optional fields: see below gender,firstname,lastname
optionalFieldsRequired string Optional required* fields: see below
doubleOptOut boolean Enable double out out unsubscription? 1
Expand Down
5 changes: 4 additions & 1 deletion Documentation/Localization.de_DE/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,7 @@ Version 6.2.0:
- Neue Einstellungsmöglichkeit: newsletterExtension (mail oder luxletter).

Version 6.3.0:
- Neue action: direkte Abmeldung via Mail-Link und neue setting: authCodeFields.
- Neue action: direkte Abmeldung via Mail-Link und neue setting: authCodeFields.

Version 6.3.1:
- Bugfix: Luxletter ist nun die Standard Newsletter-Extension - um eine PHP-Warnung zu verhindern.
2 changes: 1 addition & 1 deletion Documentation/Localization.de_DE/Configuration/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Settings-Einstellungen
Feld Typ Beschreibung Standard-Wert
================================= =========== ===================================================================== ================================
table string tt_address, fe_users oder keine Tabelle (leerer Wert) möglich tt_address
newsletterExtension string luxletter (default für fe_users) oder mail (default für tt_address)
newsletterExtension string luxletter (default für fe_users) oder mail (default für tt_address) leer = luxletter
optionalFields string Optionale Werte: siehe weiter unten gender,firstname,lastname
optionalFieldsRequired string Optionale erforderliche* Werte: siehe weiter unten
doubleOptOut boolean Double opt out Abmeldung einschalten? 1
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# fp_newsletter

version 6.3.0
version 6.3.1

The TYPO3 extension fp_newsletter is designed to provide a newsletter subscription and unsubscription service for the
table tt_address which can be used by the extension mail OR for the table fe_users which can be used by luxletter or mail.
Expand Down Expand Up @@ -46,4 +46,7 @@ Version 6.2.0:
- New setting: newsletterExtension (mail or luxletter).

Version 6.3.0:
- New action: direct unsubscribe via Mail-link and new setting: authCodeFields.
- New action: direct unsubscribe via Mail-link and new setting: authCodeFields.

Version 6.3.1:
- Bugfix: Luxletter is now the default newsletter-extension - to prevent a PHP warning.
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
'author_company' => 'fixpunkt für digitales GmbH',
'state' => 'stable',
'clearCacheOnLoad' => 0,
'version' => '6.3.0',
'version' => '6.3.1',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-12.4.99'
Expand Down

0 comments on commit c6ede56

Please sign in to comment.