Index: lams_central/web/comments/comments.jsp =================================================================== diff -u -r0f2210d408d6d9ce21813f48b4a46e16f2f65807 -r8db199a300d8f5c1b477c927cd74e111af4aecb9 --- lams_central/web/comments/comments.jsp (.../comments.jsp) (revision 0f2210d408d6d9ce21813f48b4a46e16f2f65807) +++ lams_central/web/comments/comments.jsp (.../comments.jsp) (revision 8db199a300d8f5c1b477c927cd74e111af4aecb9) @@ -46,6 +46,7 @@ function reloadDivs(url) { $('.scroll').data('jscroll', null); + $.ajaxSetup({ cache: true }); $('#commentDiv').load(url); } Index: lams_central/web/comments/new.jsp =================================================================== diff -u -r67f128090c1d1c1e8ec3b987477c17c7df8d6bdd -r8db199a300d8f5c1b477c927cd74e111af4aecb9 --- lams_central/web/comments/new.jsp (.../new.jsp) (revision 67f128090c1d1c1e8ec3b987477c17c7df8d6bdd) +++ lams_central/web/comments/new.jsp (.../new.jsp) (revision 8db199a300d8f5c1b477c927cd74e111af4aecb9) @@ -56,6 +56,7 @@ + "&threadUid=" + threadUid + "&commentUid=" + commentUid; + $.ajaxSetup({ cache: true }); $(newThreadDiv).load(loadString, function() { highlightMessage(); Index: lams_central/web/comments/topicview.jsp =================================================================== diff -u -r0ddeb3a1dcf29cbbba6ed0fccbd139f9c31c347f -r8db199a300d8f5c1b477c927cd74e111af4aecb9 --- lams_central/web/comments/topicview.jsp (.../topicview.jsp) (revision 0ddeb3a1dcf29cbbba6ed0fccbd139f9c31c347f) +++ lams_central/web/comments/topicview.jsp (.../topicview.jsp) (revision 8db199a300d8f5c1b477c927cd74e111af4aecb9) @@ -52,6 +52,7 @@ var parentDiv = document.getElementById('pb-msg'+commentUid); parentDiv.appendChild(replyDiv); + $.ajaxSetup({ cache: true }); $(replyDiv).load(url); } } @@ -69,6 +70,7 @@ var parentDiv = document.getElementById('pb-msg'+commentUid); parentDiv.appendChild(editDiv); + $.ajaxSetup({ cache: true }); $(editDiv).load(url); } } Index: lams_central/web/includes/javascript/comments.js =================================================================== diff -u -r67f128090c1d1c1e8ec3b987477c17c7df8d6bdd -r8db199a300d8f5c1b477c927cd74e111af4aecb9 --- lams_central/web/includes/javascript/comments.js (.../comments.js) (revision 67f128090c1d1c1e8ec3b987477c17c7df8d6bdd) +++ lams_central/web/includes/javascript/comments.js (.../comments.js) (revision 8db199a300d8f5c1b477c927cd74e111af4aecb9) @@ -25,6 +25,7 @@ alert(savedCannotRedisplayMessage); } else { var loadString = lamsUrl+"comments/viewTopicThread.do?&sessionMapID=" + response.sessionMapID + "&threadUid=" + threadUid+"&commentUid="+commentUid; + $.ajaxSetup({ cache: true }); $(threadDiv).load(loadString, function() { // expand up to the reply - in case it is buried down in a lot of replies // don't need to do this if we have started a new thread.