Details
-
Bug
-
Resolution: Fixed
-
Minor
-
1.1 M2
-
None
-
action
-
Description
How to reproduce:
edit some section in some document,
write edit comment (aka version summary)
save document
edit comment do not saved.
fix:
SaveAction.java
if (sectionNumber != 0) { XWikiDocument sectionDoc = (XWikiDocument) tdoc.clone(); sectionDoc.readFromForm((EditForm) form, context); String sectionContent = sectionDoc.getContent() + "\n"; String content = doc.updateDocumentSection(sectionNumber, sectionContent); tdoc.setContent(content); tdoc.setTitle(title); // this line is missing tdoc.setComment(sectionDoc.getComment()); } else { tdoc.readFromForm((EditForm) form, context); }