Fix: defined preg delimiter used in preg_quote function

This commit is contained in:
Regis Houssin 2009-11-16 19:49:31 +00:00
parent df5eedc567
commit ceb8d9a43e

View File

@ -962,7 +962,7 @@ class CMailFile
if (file_exists($images_dir.'/'.$img))
{
// Image path in src
$src = preg_quote($full);
$src = preg_quote($full,'/');
// Image full path
$this->html_images[$i]["fullpath"] = $images_dir.'/'.$img;