Hello,
I'm loading the comment form with the following code

$ n = node_load ($ nid, NULL, TRUE);
$ comments = comment_render ($ n);
$ comment_form = drupal_get_form ('comment_form', array ('nid' => $ nid));

and it works, but i need a redirection when it finishes the comment update. Now it goes to "/mysite/comments/reply/24" and I need it going to a new url "/mysite/news/24"

Thanks