Skip to content

Commit efe574f

Browse files
committed
Merge branch 'release/7.3.1'
2 parents dd12fc2 + 98b79b3 commit efe574f

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

Configuration/TypoScript/Main/setup.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -974,6 +974,7 @@ plugin.tx_powermail {
974974
# ParseFunc Configuration for using FAL links in receiver and sender mail
975975
lib.parseFunc_powermail < lib.parseFunc_RTE
976976
lib.parseFunc_powermail.tags.link.typolink.forceAbsoluteUrl = 1
977+
lib.parseFunc_powermail.tags.a.typolink.forceAbsoluteUrl = 1
977978

978979

979980
############################

Documentation/Changelog/Index.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ All changes are documented on https://docs.typo3.org/typo3cms/extensions/powerma
1717
:Changes:
1818
Release Description
1919

20+
- :Version:
21+
7.3.1
22+
:Date:
23+
2019-05-21
24+
:Changes:
25+
26+
* Bugfix: Fix table fields for marketing information for mysql strict mode
27+
* Bugfix: Ensure to render a-tags as absolute links in mails
28+
2029
- :Version:
2130
7.3.0
2231
:Date:

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
and easy to use mailform extension with a lots of features
1010
(spam prevention, marketing information, optin, ajax submit, diagram analysis, etc...)',
1111
'category' => 'plugin',
12-
'version' => '7.3.0',
12+
'version' => '7.3.1',
1313
'module' => '',
1414
'state' => 'stable',
1515
'uploadfolder' => 0,

ext_tables.sql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,13 @@ CREATE TABLE tx_powermail_domain_model_mail (
169169
time int(11) DEFAULT '0' NOT NULL,
170170
form int(11) DEFAULT '0' NOT NULL,
171171
answers int(11) unsigned DEFAULT '0' NOT NULL,
172-
marketing_referer_domain text NOT NULL,
173-
marketing_referer text NOT NULL,
174-
marketing_country text NOT NULL,
172+
marketing_referer_domain text,
173+
marketing_referer text,
174+
marketing_country text,
175175
marketing_mobile_device tinyint(4) unsigned DEFAULT '0' NOT NULL,
176176
marketing_frontend_language int(11) DEFAULT '0' NOT NULL,
177-
marketing_browser_language text NOT NULL,
178-
marketing_page_funnel text NOT NULL,
177+
marketing_browser_language text,
178+
marketing_page_funnel text,
179179
spam_factor varchar(255) DEFAULT '' NOT NULL,
180180

181181
tstamp int(11) unsigned DEFAULT '0' NOT NULL,

0 commit comments

Comments
 (0)