Index: common/src/main/resources/help/help.js =================================================================== --- common/src/main/resources/help/help.js (revision 34384) +++ common/src/main/resources/help/help.js (working copy) @@ -129,11 +129,13 @@ return; } } - if ((idx = relPath.indexOf('#')) != -1) { - // Remove '#' from IE Ajax URLs b/c IE can't handle it!! - relPath = relPath.substring(0, idx); - } } + //************************************************************** + // Fix for 11017? + if ((idx = relPath.indexOf('#')) != -1) { + // Remove '#' from IE Ajax URLs b/c IE can't handle it!! + relPath = relPath.substring(0, idx); + } // Take filename off baseURL baseURL = baseURL.substring(0, baseURL.lastIndexOf('/'));