Skip to content
Snippets Groups Projects
Commit 80d402f1 authored by kainuk's avatar kainuk
Browse files

Merge branch 'updategroupsubscriptions' into 'master'

UpdateGroupSubscriptions action fails

See merge request !81
parents c38ac215 dd90efde
No related branches found
No related tags found
1 merge request!81UpdateGroupSubscriptions action fails
......@@ -27,7 +27,7 @@ class UpdateGroupSubscriptions extends AbstractAction {
*/
protected function doAction(ParameterBagInterface $parameters, ParameterBagInterface $output) {
$groups = $parameters->getParameter('group_ids');
$groupsToCheck = explode(",", $this->configuration->getParameter('group_ids'));
$groupsToCheck = $this->configuration->getParameter('group_ids');
foreach($groupsToCheck as $groupIdToCheck) {
if (in_array($groupIdToCheck, $groups)) {
$action = 'create';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment