diff options
author | Erwan Nader <ernadoo@gmail.com> | 2016-09-18 19:55:00 +0200 |
---|---|---|
committer | Erwan Nader <ernadoo@gmail.com> | 2016-09-18 19:55:00 +0200 |
commit | 6b435cbf13487a8871caa7edb82644df98ce16a0 (patch) | |
tree | 30230fe8e4e7f2bf12bc8c71792f9dcbffacf8b5 /phpBB/search.php | |
parent | e7289fa019f57ee6b57c984a7752e934bc7f7c3f (diff) | |
download | forums-6b435cbf13487a8871caa7edb82644df98ce16a0.tar forums-6b435cbf13487a8871caa7edb82644df98ce16a0.tar.gz forums-6b435cbf13487a8871caa7edb82644df98ce16a0.tar.bz2 forums-6b435cbf13487a8871caa7edb82644df98ce16a0.tar.xz forums-6b435cbf13487a8871caa7edb82644df98ce16a0.zip |
[ticket/14592] Fix variable type
PHPBB3-14592
Diffstat (limited to 'phpBB/search.php')
-rw-r--r-- | phpBB/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 8dccc7f14b..8fcd079ebd 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -585,7 +585,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) * @var array sort_by_sql Array of SQL sorting instructions * @var string sort_key The sort key * @var string sort_dir The sort direction - * @var string sort_days Limit the age of results + * @var int sort_days Limit the age of results * @var array ex_fid_ary Array of excluded forum ids * @var string m_approve_posts_fid_sql Specifies which types of posts the user can view in which forums * @var int topic_id is set to 0 or a topic id, if it is not 0 then only posts in this topic should be searched |