|
From: <mb...@re...> - 2004-12-08 21:18:09
|
Author: mbooth
Date: 2004-12-08 22:09:11 +0100 (Wed, 08 Dec 2004)
New Revision: 143
Modified:
ccm-forum/trunk/src/com/arsdigita/forum/ui/ThreadDisplay.java
Log:
Redirect after handling control events
Modified: ccm-forum/trunk/src/com/arsdigita/forum/ui/ThreadDisplay.java
===================================================================
--- ccm-forum/trunk/src/com/arsdigita/forum/ui/ThreadDisplay.java 2004-12-05 11:03:19 UTC (rev 142)
+++ ccm-forum/trunk/src/com/arsdigita/forum/ui/ThreadDisplay.java 2004-12-08 21:09:11 UTC (rev 143)
@@ -160,6 +160,13 @@
m_post.setSelectedObject(state, post);
m_threadComponent.makeRejectFormVisible(state);
}
+
+ state.clearControlEvent();
+ try {
+ throw new RedirectSignal( state.stateAsURL(), true );
+ } catch( IOException ex ) {
+ throw new UncheckedWrapperException( ex );
+ }
}
private DomainCollection getMessages(PageState state) {
|