diff options
author | Adam Reyher <adamr@phpbb.com> | 2010-05-02 23:07:44 -0400 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-07-11 02:44:07 +0200 |
commit | b939ce5940688430adb5fb54dda00e971b4eec49 (patch) | |
tree | ed8ec4930a5a7ae2b9ef689f24df1ffe54ce64db /phpBB/viewforum.php | |
parent | fd23bccd4d279e902d0b609cee71f09750d364a7 (diff) | |
download | forums-b939ce5940688430adb5fb54dda00e971b4eec49.tar forums-b939ce5940688430adb5fb54dda00e971b4eec49.tar.gz forums-b939ce5940688430adb5fb54dda00e971b4eec49.tar.bz2 forums-b939ce5940688430adb5fb54dda00e971b4eec49.tar.xz forums-b939ce5940688430adb5fb54dda00e971b4eec49.zip |
[ticket/9012] Adjust shadow topic title to the title at the time it was moved.
Moved topics which have their title changed in the new forum will now show the
old title in the original viewforum instead of the new title.
PHPBB3-9012
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r-- | phpBB/viewforum.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index d18508ccbc..5f33b7565f 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -508,6 +508,7 @@ if (sizeof($shadow_topic_list)) 'topic_moved_id' => $rowset[$orig_topic_id]['topic_moved_id'], 'topic_status' => $rowset[$orig_topic_id]['topic_status'], 'topic_type' => $rowset[$orig_topic_id]['topic_type'], + 'topic_title' => $rowset[$orig_topic_id]['topic_title'], )); // Shadow topics are never reported |