Quote:
Originally Posted by Abe1
This is what i do. After someone clicks 'submit,' they are directed to the 'edit post' page. This gives them a chance to add attachments. Also, when they click on 'update post' is adds the words in the post to the search index.
|
sweet! that will do the trick until attachments are added.
for anyone else that wants the code to do this,
Find
PHP Code:
if ($redirectoption == "3") {
$url = "forumdisplay.php?$session[sessionurl]f=$forum[forumid]";
eval(print_standard_redirect('redirect_postthanks'));
exit();
}
Add BELOW,
PHP Code:
if ($redirectoption == "4") {
$url = "editpost.php?do=editpost&$session[sessionurl]p=$post[postid]";
eval(print_standard_redirect('redirect_postthanks'));
exit();
}
and then use $redirectoption = "4";