Skip to content

Commit

Permalink
MFB: fixed "Follow mode is not kept when quoting" (fixes #869, thanks…
Browse files Browse the repository at this point in the history
… to mariusmuja)
  • Loading branch information
mysnip committed Jul 8, 2011
1 parent 772e061 commit 08bc525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/posting/request_first.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
// When replying, the user might already be subscribed to the thread,
// in which case the follow mode needs to be initializated to not
// lose the follow mode on posting the reply.
if ($mode == "reply" && $PHORUM["DATA"]["LOGGEDIN"])
if (($mode == "reply" || $mode == "quote") && $PHORUM["DATA"]["LOGGEDIN"])
{
$type = phorum_api_user_get_subscription(
$PHORUM["user"]["user_id"], $message["forum_id"], $message["thread"]);
Expand Down

0 comments on commit 08bc525

Please # to comment.