Opened 17 years ago
Last modified 17 years ago
#482 closed Defect
Forum Thread errors — at Initial Version
Reported by: | tstrunk | Owned by: | davea |
---|---|---|---|
Priority: | Minor | Milestone: | Undetermined |
Component: | Web - Forums | Version: | |
Keywords: | Cc: |
Description
Rev. 14224 gives some error messages if you reply on the forums.
forum_thread.php:99 if (can_reply($thread, $logged_in_user)) { should be: if (can_reply($thread, $forum, $logged_in_user)) {
forum.inc:587 if (($controls == FORUM_CONTROLS) && (can_reply($thread, $logged_in_user))) { should be if (($controls == FORUM_CONTROLS) && (can_reply($thread, $forum, $logged_in_user))) {