Fix dynamicResourceUrl for windows systems
authorColeman Watts <coleman@civicrm.org>
Sat, 9 Aug 2014 16:06:48 +0000 (17:06 +0100)
committerColeman Watts <coleman@civicrm.org>
Sat, 9 Aug 2014 16:06:48 +0000 (17:06 +0100)
CRM/Utils/File.php

index 32819fcc1d9774daea253976c7636211c6ce3d7b..fb25837908d7dd6c4a378b2006b0118a26a07437 100644 (file)
@@ -728,7 +728,7 @@ HTACCESS;
   static function dynamicResourceUrl($fileName) {
     $config = CRM_Core_Config::singleton();
     // FIXME: Need a better way of getting the url of the baseFilePath
-    return self::addTrailingSlash(str_replace('/persist/contribute', '', $config->imageUploadURL)) . 'dynamic/' . $fileName;
+    return self::addTrailingSlash(str_replace('/persist/contribute', '', $config->imageUploadURL), '/') . 'dynamic/' . $fileName;
   }
 
   /**