mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 08:23:01 +02:00
Merge branch 'wip-MDL-47647-master' of git://github.com/abgreeve/moodle
This commit is contained in:
commit
60c1108c30
@ -5919,9 +5919,14 @@ function email_to_user($user, $from, $subject, $messagetext, $messagehtml = '',
|
||||
|
||||
$attachmentpath = $attachment;
|
||||
|
||||
// Before doing the comparison, make sure that the paths are correct (Windows uses slashes in the other direction).
|
||||
$attachpath = str_replace('\\', '/', $attachmentpath);
|
||||
// Make sure both variables are normalised before comparing.
|
||||
$temppath = str_replace('\\', '/', $CFG->tempdir);
|
||||
|
||||
// If the attachment is a full path to a file in the tempdir, use it as is,
|
||||
// otherwise assume it is a relative path from the dataroot (for backwards compatibility reasons).
|
||||
if (strpos($attachmentpath, $CFG->tempdir) !== 0) {
|
||||
if (strpos($attachpath, $temppath) !== 0) {
|
||||
$attachmentpath = $CFG->dataroot . '/' . $attachmentpath;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user