-
Bug
-
Resolution: Fixed
-
Minor
-
2.6.3
-
None
-
MOODLE_26_STABLE
-
MOODLE_26_STABLE
Undefined index: recipientemails in mod\dataform\classes\observer\notification.php on line 141
Possible solution, change
if ($recipients = $data['recipientemails']) {
|
to
if (!empty($data['recipientemails'])) {
|
$recipients = $data['recipientemails'];
|