diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-08-28 21:57:52 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-29 17:50:13 +0200 |
commit | 1935568c3ef8f3dc243039973bb37c812be3d447 (patch) | |
tree | 779db146b5e6d86d22fabfd9db7860d9944e6149 /phpBB/includes | |
parent | 5ff35ccf72042cadc7f0bddc540eb26f1d99e11b (diff) | |
download | forums-1935568c3ef8f3dc243039973bb37c812be3d447.tar forums-1935568c3ef8f3dc243039973bb37c812be3d447.tar.gz forums-1935568c3ef8f3dc243039973bb37c812be3d447.tar.bz2 forums-1935568c3ef8f3dc243039973bb37c812be3d447.tar.xz forums-1935568c3ef8f3dc243039973bb37c812be3d447.zip |
[feature/soft-delete] Fix typo in column name topic_visibility
PHPBB3-9657
Diffstat (limited to 'phpBB/includes')
-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 db9872e04e..a90fc0891e 100644 --- a/phpBB/includes/mcp/mcp_main.php +++ b/phpBB/includes/mcp/mcp_main.php @@ -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'], |