Who's affected
Any users using Internet Explorer less than version 9 and is running ServicePulse within a sub directory
Symptoms
If the browser is an unsupported version of Internet Explorer and ServicePulse is hosted within a sub directory, the browser will be redirected to the root directory looking for a file NoIE.html in the root.
Original bug report
The browser check in Index.html
<!--[if lt IE 9 ]>
<script type="text/javascript">
window.location = '/NoIE.html';
</script>
<![endif]-->
assumes that pulse is in the root folder. It needs changing to be a relative url
window.location.href = 'NoIE.html';