1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

[feature/soft-delete] Fix typo in column name topic_visibility

PHPBB3-9657
This commit is contained in:
Joas Schilling 2012-08-28 21:57:52 +02:00
parent 5ff35ccf72
commit 1935568c3e

View File

@ -534,7 +534,7 @@ function mcp_move_topic($topic_ids)
'forum_id' => (int) $row['forum_id'],
'icon_id' => (int) $row['icon_id'],
'topic_attachment' => (int) $row['topic_attachment'],
'topic_visibliity' => ITEM_APPROVED, // a shadow topic is always approved
'topic_visibility' => ITEM_APPROVED, // a shadow topic is always approved
'topic_reported' => 0, // a shadow topic is never reported
'topic_title' => (string) $row['topic_title'],
'topic_poster' => (int) $row['topic_poster'],