Vamsi,

Shouldn't the localFile.split in the if below use "/" for *nix instead of "\\"? If so, then it needs to be corrected in each of the jsps that were changed.

Joe


[EMAIL PROTECTED] wrote:
+    // Split the path
+    var pathParts = localFile.split("\\"); // Assuming windows file delim
+    if(localFile.indexOf("/") > 0) // May be *nix delim
+        pathParts = localFile.split("\\");

Reply via email to