Opened 17 years ago

Last modified 17 years ago

#482 closed Defect

Forum Thread errors — at Version 1

Reported by: tstrunk Owned by: davea
Priority: Minor Milestone: Undetermined
Component: Web - Forums Version:
Keywords: Cc:

Description (last modified by Nicolas)

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))) {

Change History (1)

comment:1 Changed 17 years ago by Nicolas

Description: modified (diff)

Format and link to files.

Note: See TracTickets for help on using tickets.