Fixed Form in account_signature not fully reloaded after save

W1zzard

Well-known member
Affected version
2.0.0
The form should be autocomplete off, so that changes made on server side during signature save (for example url autolink) are properly reflected back to the user.
 
This is fixed for 2.0.2, though not in the recommended way. I looked at applying autocomplete in a few places, though there are minor disadvantages with that. Primarily, it has to do with back and forward buttons and retaining the cached value which we'd want to do.

This is generally only significant when we redirect back to the same URL after saving. In this case, we were calling window.location.reload() in JS. This takes an argument over whether the reload is forced -- setting that to true resolves this issue.
 
Top Bottom