Opened 16 years ago

Closed 16 years ago

#482 closed Defect (fixed)

Forum Thread errors

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 (2)

comment:1 Changed 16 years ago by Nicolas

Description: modified (diff)

Format and link to files.

comment:2 Changed 16 years ago by davea

Resolution: fixed
Status: newclosed

(In [14231]) - user web: fixes #482

Note: See TracTickets for help on using tickets.