diff options
| author | Chris Smith <toonarmy@phpbb.com> | 2008-09-23 12:01:26 +0000 |
|---|---|---|
| committer | Chris Smith <toonarmy@phpbb.com> | 2008-09-23 12:01:26 +0000 |
| commit | 687da94982f5d6f8c3290893d40ed84b02f54a37 (patch) | |
| tree | 4a61a3bee409a1e161f011772499e387ef1bfa08 /phpBB/includes/mcp/mcp_main.php | |
| parent | a1b7a5f8a3886de6408def501869fa492a68fe5d (diff) | |
| download | forums-687da94982f5d6f8c3290893d40ed84b02f54a37.tar forums-687da94982f5d6f8c3290893d40ed84b02f54a37.tar.gz forums-687da94982f5d6f8c3290893d40ed84b02f54a37.tar.bz2 forums-687da94982f5d6f8c3290893d40ed84b02f54a37.tar.xz forums-687da94982f5d6f8c3290893d40ed84b02f54a37.zip | |
Log the forum name that topics are moved into.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8908 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_main.php')
| -rw-r--r-- | phpBB/includes/mcp/mcp_main.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_main.php b/phpBB/includes/mcp/mcp_main.php index 814add5aa8..1b6a26dc07 100644 --- a/phpBB/includes/mcp/mcp_main.php +++ b/phpBB/includes/mcp/mcp_main.php @@ -641,7 +641,7 @@ function mcp_move_topic($topic_ids) { // Get the list of forums to resync, add a log entry $forum_ids[] = $row['forum_id']; - add_log('mod', $to_forum_id, $topic_id, 'LOG_MOVE', $row['forum_name']); + add_log('mod', $to_forum_id, $topic_id, 'LOG_MOVE', $row['forum_name'], $forum_data['forum_name']); // If we have moved a global announcement, we need to correct the topic type if ($row['topic_type'] == POST_GLOBAL) |
