mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/14882] Correct type of topic_id for function_admin's move_posts events
PHPBB3-14882
This commit is contained in:
parent
78ff392b64
commit
aa84ea8e5d
1 changed files with 3 additions and 3 deletions
|
@ -641,7 +641,7 @@ function move_posts($post_ids, $topic_id, $auto_sync = true)
|
||||||
*
|
*
|
||||||
* @event core.move_posts_before
|
* @event core.move_posts_before
|
||||||
* @var array post_ids Array of post ids to move
|
* @var array post_ids Array of post ids to move
|
||||||
* @var string topic_id The topic id the posts are moved to
|
* @var int topic_id The topic id the posts are moved to
|
||||||
* @var bool auto_sync Whether or not to perform auto sync
|
* @var bool auto_sync Whether or not to perform auto sync
|
||||||
* @var array forum_ids Array of the forum ids the posts are moved from
|
* @var array forum_ids Array of the forum ids the posts are moved from
|
||||||
* @var array topic_ids Array of the topic ids the posts are moved from
|
* @var array topic_ids Array of the topic ids the posts are moved from
|
||||||
|
@ -673,7 +673,7 @@ function move_posts($post_ids, $topic_id, $auto_sync = true)
|
||||||
*
|
*
|
||||||
* @event core.move_posts_after
|
* @event core.move_posts_after
|
||||||
* @var array post_ids Array of the moved post ids
|
* @var array post_ids Array of the moved post ids
|
||||||
* @var string topic_id The topic id the posts are moved to
|
* @var int topic_id The topic id the posts are moved to
|
||||||
* @var bool auto_sync Whether or not to perform auto sync
|
* @var bool auto_sync Whether or not to perform auto sync
|
||||||
* @var array forum_ids Array of the forum ids the posts are moved from
|
* @var array forum_ids Array of the forum ids the posts are moved from
|
||||||
* @var array topic_ids Array of the topic ids the posts are moved from
|
* @var array topic_ids Array of the topic ids the posts are moved from
|
||||||
|
@ -704,7 +704,7 @@ function move_posts($post_ids, $topic_id, $auto_sync = true)
|
||||||
*
|
*
|
||||||
* @event core.move_posts_sync_after
|
* @event core.move_posts_sync_after
|
||||||
* @var array post_ids Array of the moved post ids
|
* @var array post_ids Array of the moved post ids
|
||||||
* @var string topic_id The topic id the posts are moved to
|
* @var int topic_id The topic id the posts are moved to
|
||||||
* @var bool auto_sync Whether or not to perform auto sync
|
* @var bool auto_sync Whether or not to perform auto sync
|
||||||
* @var array forum_ids Array of the forum ids the posts are moved from
|
* @var array forum_ids Array of the forum ids the posts are moved from
|
||||||
* @var array topic_ids Array of the topic ids the posts are moved from
|
* @var array topic_ids Array of the topic ids the posts are moved from
|
||||||
|
|
Loading…
Add table
Reference in a new issue