Commit 8832f4ae6aa6a232d3c46a3e74f82a4e0c2e846f

Authored by Megan
1 parent 522d6abe

KTC-694 - Fixed e-signature javascript bug on windows.

"DMS Administration can not be access in IE when the electronic signatures are enabled"
Fixed.

Committed by: Megan Watson
Reviewed by: Kevin Cyster
lib/plugins/pluginutil.inc.php
@@ -701,10 +701,10 @@ class KTPluginUtil { @@ -701,10 +701,10 @@ class KTPluginUtil {
701 if(PEAR::isError($oEntity)){ 701 if(PEAR::isError($oEntity)){
702 return $oEntity; 702 return $oEntity;
703 } 703 }
704 - $dir = dirname($oEntity->getPath()) . DIRECTORY_SEPARATOR; 704 + $dir = dirname($oEntity->getPath()) . '/';
705 705
706 if(!$relative){ 706 if(!$relative){
707 - $dir = KT_DIR . DIRECTORY_SEPARATOR . $dir; 707 + $dir = KT_DIR . '/' . $dir;
708 } 708 }
709 709
710 return $dir; 710 return $dir;