Open GoogleCodeExporter opened 9 years ago
From the implementation I assume, that there's "duplicate edit" detetected in
your MediaWiki instance?
// This time, 302 means success. 302 is returned when the server
// attempts a page redirection.
// 200 means the save failed probably because another user posted some
// edits since loadData() was called.
if (responseCode >= HttpStatus.SC_OK && responseCode < 300) {
// The calling code will respond by reloading the data, merging, and
// attempting to save again.
throw new ConcurrentEditException();
} else if (responseCode != 302) {
// Some other error code.
throw new IOException(method.getStatusText() + " (" + responseCode + ")");
}
Original comment by axelclk@gmail.com
on 13 May 2013 at 4:07
Original issue reported on code.google.com by
smita.su...@gmail.com
on 13 May 2013 at 10:27