Skip to content

Commit

Permalink
Filter
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jan 2, 2025
1 parent 5aaba0d commit a2372c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions htdocs/alumni/survey_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -285,19 +285,19 @@
$tmpobject = new Survey($db);
$tmpobject->fetch($toselectid);

$tmpobject->array_options = array('options_ne_pas_relancer' => 1);
$tmpobject->array_options = array('options_ne_plus_relancer' => 1);

$result = $tmpobject->updateExtraField('ne_pas_relancer', null, $user);
$result = $tmpobject->updateExtraField('ne_plus_relancer', null, $user);
}
}
if ($massaction == 'settoreengage' && $permissiontoadd) {
foreach ($toselect as $toselectid) {
$tmpobject = new Survey($db);
$tmpobject->fetch($toselectid);

$tmpobject->array_options = array('options_ne_pas_relancer' => 0);
$tmpobject->array_options = array('options_ne_plus_relancer' => 0);

$result = $tmpobject->updateExtraField('ne_pas_relancer', null, $user);
$result = $tmpobject->updateExtraField('ne_plus_relancer', null, $user);
}
}
}
Expand Down

0 comments on commit a2372c5

Please sign in to comment.