mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 15:57:45 +02:00
[feature/soft-delete] Fix typo in column name topic_visibility
PHPBB3-9657
This commit is contained in:
@@ -534,7 +534,7 @@ function mcp_move_topic($topic_ids)
|
|||||||
'forum_id' => (int) $row['forum_id'],
|
'forum_id' => (int) $row['forum_id'],
|
||||||
'icon_id' => (int) $row['icon_id'],
|
'icon_id' => (int) $row['icon_id'],
|
||||||
'topic_attachment' => (int) $row['topic_attachment'],
|
'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_reported' => 0, // a shadow topic is never reported
|
||||||
'topic_title' => (string) $row['topic_title'],
|
'topic_title' => (string) $row['topic_title'],
|
||||||
'topic_poster' => (int) $row['topic_poster'],
|
'topic_poster' => (int) $row['topic_poster'],
|
||||||
|
Reference in New Issue
Block a user