- Added a better confirmation message when deleting content.

- Added a "commit" option as well as a listing of version tags per the rough
   edges discussions on IRC.
 - Added a "close" or "archive" option to replies.
This commit is contained in:
JT Smith 2006-06-10 20:49:11 +00:00
parent 58566a6ed6
commit 9aa86225be
9 changed files with 413 additions and 371 deletions

View file

@ -122,6 +122,7 @@ sub addPost {
}
}
$post->postProcess;
$post->getThread->unarchive if ($post->getThread->get("status") eq "archived");
$post->requestCommit;
return $post;
}