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
0e581eee
Commit
0e581eee
authored
Sep 16, 2020
by
jaapjansma
Browse files
Fixed issue with mailing group type and multiple,
parent
7c259061
Changes
5
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
0e581eee
Version 1.14 (under development)
============
Version 1.13.1
============
*
Fixed issue with mailing group type and multiple,
Version 1.13
============
...
...
Civi/FormProcessor/Type/MailingGroupType.php
View file @
0e581eee
...
...
@@ -22,7 +22,7 @@ class MailingGroupType extends AbstractType implements OptionListInterface {
* @return bool
*/
public
function
isMultiple
()
{
return
FALSE
;
return
$this
->
configuration
->
get
(
'multiple'
)
==
1
?
TRUE
:
FALSE
;
}
/**
...
...
Civi/FormProcessor/Type/ParticipantStatusType.php
View file @
0e581eee
...
...
@@ -22,7 +22,7 @@ class ParticipantStatusType extends AbstractType implements OptionListInterface
* @return bool
*/
public
function
isMultiple
()
{
return
FALSE
;
return
$this
->
configuration
->
get
(
'multiple'
)
==
1
?
TRUE
:
FALSE
;
}
/**
...
...
Civi/FormProcessor/Type/WeekDays.php
View file @
0e581eee
...
...
@@ -20,7 +20,7 @@ class WeekDays extends AbstractType implements OptionListInterface {
* @return bool
*/
public
function
isMultiple
()
{
return
FALSE
;
return
$this
->
configuration
->
get
(
'multiple'
)
==
1
?
TRUE
:
FALSE
;
}
/**
...
...
info.xml
View file @
0e581eee
...
...
@@ -17,7 +17,7 @@
<url
desc=
"Action-Provider Extension"
>
https://lab.civicrm.org/extensions/action-provider
</url>
</urls>
<releaseDate>
2020-09-16
</releaseDate>
<version>
1.1
4-dev
</version>
<version>
1.1
3.1
</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