Commit 8832f4ae6aa6a232d3c46a3e74f82a4e0c2e846f
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
Showing
1 changed file
with
2 additions
and
2 deletions
lib/plugins/pluginutil.inc.php
| ... | ... | @@ -701,10 +701,10 @@ class KTPluginUtil { |
| 701 | 701 | if(PEAR::isError($oEntity)){ |
| 702 | 702 | return $oEntity; |
| 703 | 703 | } |
| 704 | - $dir = dirname($oEntity->getPath()) . DIRECTORY_SEPARATOR; | |
| 704 | + $dir = dirname($oEntity->getPath()) . '/'; | |
| 705 | 705 | |
| 706 | 706 | if(!$relative){ |
| 707 | - $dir = KT_DIR . DIRECTORY_SEPARATOR . $dir; | |
| 707 | + $dir = KT_DIR . '/' . $dir; | |
| 708 | 708 | } |
| 709 | 709 | |
| 710 | 710 | return $dir; | ... | ... |