Hide Forgot
Just adding this appears to be a Firefox only issue as I can't reproduce it in Chrome. For reference this is the error message: Uncaught exception was detected. Redirecting you to the home page. Exception: (TypeError) : d is null
Fixed in 1.3-SNAPSHOT build 201312030913 The problem was that the additional xml being sent to be parsed was null and the Firefox parser implementation crashes when you do that. As such I've made two changes: 1. The additional xml won't be processed if it is null or empty. 2. The convertStringToDocument method will now check if the xml value parsed is null and handle it accordingly.
Confirmed the fix.