Fix dynamicResourcepath for windows systems (again)
authorColeman Watts <coleman@civicrm.org>
Mon, 1 Sep 2014 19:09:06 +0000 (20:09 +0100)
committerColeman Watts <coleman@civicrm.org>
Mon, 1 Sep 2014 19:09:06 +0000 (20:09 +0100)
CRM/Utils/File.php

index 1b3d8a37351e3c6a21e7370ad58993e974cba631..579a7d0b3845f993a940b1d3d5e7f2220b43e9b5 100644 (file)
@@ -716,7 +716,7 @@ HTACCESS;
     // FIXME: Use self::baseFilePath once url issue has been resolved
     // Windows PHP accepts any mix of "/" or "\"; simpler if we only deal with one of those
     $imageUploadDir = str_replace('\\', '/', $config->imageUploadDir);
-    $path = self::addTrailingSlash(str_replace('/persist/contribute', '', $imageUploadDir)) . 'dynamic';
+    $path = self::addTrailingSlash(str_replace('/persist/contribute', '', $imageUploadDir), '/') . 'dynamic';
     if ($fileName !== NULL) {
       $path .= "/$fileName";
     }