Hey WeepingLiberty,
You can help verify your issue by looking at the debug output in your browser's console.
- When you click "Edit", your browser makes a request to `/posts/<POST_ID>/raw` to fetch the current text. It then prints out the result to the console.
- When you click "Save" on the edit-form, your browser sends the update to the server and receives the updated-post. It then prints out the updated-post to the console.
To illustrate, here's my browser console while updating the text of [this post](http://www.roleplayerguild.com/topics/75355/posts/ooc#post-2332647) from "test3" to "test4":

- When I clicked "Edit", it made that GET request and then print out "test3".
- When I changed the text and clicked "Save", you can see that it made the PUT request and printed out the updated post with:
text: "test4"
There's definitely an issue if the updated-post readout comes back with the same pre-edit text.