Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.6.6, 2.7.3, 2.8.1
-
MOODLE_26_STABLE, MOODLE_27_STABLE, MOODLE_28_STABLE
-
MOODLE_27_STABLE, MOODLE_28_STABLE
-
MDL-48491-master -
Description
The welcome messages which are being sent out from the Paypal plugin are sending messages as the site admin and not using the settings defined in the server support contact.
In Moodle 2.6 ipn.php
$eventdata->userfrom = empty($teacher) ? get_admin() : $teacher;
Should read
$eventdata->userfrom = empty($teacher) ? core_user::get_support_user() : $teacher;