Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
erikbrouwer
form-processor
Commits
f5c5396a
Commit
f5c5396a
authored
Sep 18, 2020
by
jaapjansma
Browse files
Fixed issue with mailing group type and multiple.
parent
ffea4754
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
f5c5396a
Version 1.14 (under development)
============
Version 1.13.2
============
*
Fixed issue with mailing group type and multiple.
Version 1.13.1
============
*
Fixed issue with mailing group type and multiple
,
*
Fixed issue with mailing group type and multiple
.
Version 1.13
============
...
...
Civi/FormProcessor/Type/MailingGroupType.php
View file @
f5c5396a
...
...
@@ -105,7 +105,7 @@ class MailingGroupType extends AbstractType implements OptionListInterface {
*/
public
function
denormalizeValue
(
$value
)
{
$multiple
=
$this
->
configuration
->
get
(
'multiple'
)
?
TRUE
:
FALSE
;
if
(
$multiple
&&
is_array
(
$value
))
{
if
(
$multiple
&&
!
is_array
(
$value
))
{
$value
=
[
$value
];
}
return
$value
;
...
...
info.xml
View file @
f5c5396a
...
...
@@ -16,8 +16,8 @@
<url
desc=
"Licensing"
>
http://www.gnu.org/licenses/agpl-3.0.html
</url>
<url
desc=
"Action-Provider Extension"
>
https://lab.civicrm.org/extensions/action-provider
</url>
</urls>
<releaseDate>
2020-09-1
6
</releaseDate>
<version>
1.1
4-dev
</version>
<releaseDate>
2020-09-1
8
</releaseDate>
<version>
1.1
3.2
</version>
<develStage>
stable
</develStage>
<compatibility>
<ver>
4.7
</ver>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment