diff options
author | brunoais <brunoaiss@gmail.com> | 2014-12-13 20:49:50 +0000 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2015-01-10 17:08:42 +0000 |
commit | 3d8aaf6aaf63cd7fcbfc53aa6fdab6bdab0b0057 (patch) | |
tree | 8f5c85341ba70e378dcc7b6c1fe88eb5454a8213 /phpBB/viewtopic.php | |
parent | ffb7d618ac9ab63c7ea909683a53c410fd49068e (diff) | |
download | forums-3d8aaf6aaf63cd7fcbfc53aa6fdab6bdab0b0057.tar forums-3d8aaf6aaf63cd7fcbfc53aa6fdab6bdab0b0057.tar.gz forums-3d8aaf6aaf63cd7fcbfc53aa6fdab6bdab0b0057.tar.bz2 forums-3d8aaf6aaf63cd7fcbfc53aa6fdab6bdab0b0057.tar.xz forums-3d8aaf6aaf63cd7fcbfc53aa6fdab6bdab0b0057.zip |
[ticket/13160] Wrong variable types fixed
PHPBB3-13160
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 83fdcdd2ac..4c6520b6f5 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -347,10 +347,10 @@ $topic_tracking_info = isset($topic_tracking_info) ? $topic_tracking_info : NULL * @var int forum_id The forum id from where the topic belongs * @var int topic_id The id of the topic the user tries to access * @var int post_id The id of the post the user tries to start viewing at. It may be 0 for none given. -* @var string topic_data All the information from the topic and forum tables for this topic +* @var array topic_data All the information from the topic and forum tables for this topic * It includes posts information if post_id is not 0 -* @var array overrides_f_read Set true to remove f_read check afterwards -* @var array overrides_forum_password Set true to remove forum_password check afterwards +* @var bool overrides_f_read Set true to remove f_read check afterwards +* @var bool overrides_forum_password Set true to remove forum_password check afterwards * @var array topic_tracking_info Information upon calling get_topic_tracking() * Make it NULL to allow auto-filling later. * Make it an array to override original data. |