diff --git a/newscoop/template_engine/metaclasses/MetaActionSubmit_Comment.php b/newscoop/template_engine/metaclasses/MetaActionSubmit_Comment.php index cd8863890a..a174181c14 100755 --- a/newscoop/template_engine/metaclasses/MetaActionSubmit_Comment.php +++ b/newscoop/template_engine/metaclasses/MetaActionSubmit_Comment.php @@ -227,7 +227,9 @@ public function takeAction(CampContext &$p_context) $this->m_properties['rejected'] = false; $this->m_error = ACTION_OK; - return true; + + header('Location: ' . $_SERVER['REQUEST_URI'], true, 303); + exit(0); } }