mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
Merge pull request #1041 from chrometoasters/pulls/1039-email-template-path-win-fix
Use correct directory separator on Windows when selecting email templates
This commit is contained in:
commit
75fe398be5
@ -521,8 +521,8 @@ class EmailRecipient extends DataObject
|
|||||||
}
|
}
|
||||||
$templatePath = substr($absoluteFilename, strlen($prefixToStrip) + 1);
|
$templatePath = substr($absoluteFilename, strlen($prefixToStrip) + 1);
|
||||||
|
|
||||||
// Optionally remove "templates/" prefixes
|
// Optionally remove "templates/" ("templates\" on Windows respectively) prefixes
|
||||||
if (preg_match('/(?<=templates\/).*$/', $templatePath, $matches)) {
|
if (preg_match('#(?<=templates' . DIRECTORY_SEPARATOR . ').*$#', $templatePath, $matches)) {
|
||||||
$templatePath = $matches[0];
|
$templatePath = $matches[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user