diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-10-26 21:23:47 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-10-26 21:26:00 +0200 |
commit | 4e816b58c6fdc6351f44f0d50b0ea5db52278245 (patch) | |
tree | be14e4f9bd20a9e1cc9c36c42d4059d45054e90b /phpBB/includes/acp | |
parent | 776a7302a4daf88ce760e89c6f9617482c0ae5e5 (diff) | |
download | forums-4e816b58c6fdc6351f44f0d50b0ea5db52278245.tar forums-4e816b58c6fdc6351f44f0d50b0ea5db52278245.tar.gz forums-4e816b58c6fdc6351f44f0d50b0ea5db52278245.tar.bz2 forums-4e816b58c6fdc6351f44f0d50b0ea5db52278245.tar.xz forums-4e816b58c6fdc6351f44f0d50b0ea5db52278245.zip |
[ticket/16146] Fix typos in event description
PHPBB3-16146
Diffstat (limited to 'phpBB/includes/acp')
-rw-r--r-- | phpBB/includes/acp/acp_forums.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/includes/acp/acp_forums.php b/phpBB/includes/acp/acp_forums.php index 25545e9265..668f2f8ebd 100644 --- a/phpBB/includes/acp/acp_forums.php +++ b/phpBB/includes/acp/acp_forums.php @@ -1423,8 +1423,8 @@ class acp_forums * This event may be triggered, when a forum is deleted * * @event core.acp_manage_forums_move_children - * @var int from_id If of the current parent forum - * @var int to_id If of the new parent forum + * @var int from_id Id of the current parent forum + * @var int to_id Id of the new parent forum * @var array errors Array of errors, should be strings and not * language key. * @since 3.1.0-a1 @@ -1529,8 +1529,8 @@ class acp_forums * Event when we move content from one forum to another * * @event core.acp_manage_forums_move_content - * @var int from_id If of the current parent forum - * @var int to_id If of the new parent forum + * @var int from_id Id of the current parent forum + * @var int to_id Id of the new parent forum * @var bool sync Shall we sync the "to"-forum's data * @var array errors Array of errors, should be strings and not * language key. If this array is not empty, @@ -1580,8 +1580,8 @@ class acp_forums * Event when content has been moved from one forum to another * * @event core.acp_manage_forums_move_content_after - * @var int from_id If of the current parent forum - * @var int to_id If of the new parent forum + * @var int from_id Id of the current parent forum + * @var int to_id Id of the new parent forum * @var bool sync Shall we sync the "to"-forum's data * * @since 3.2.9-RC1 |