diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-08-22 11:02:17 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-08-22 11:02:17 +0000 |
commit | a45ac24bd7f0b7ffba38827c43a853af32aa512f (patch) | |
tree | fd7b8f052675f03779a29895b2b2313f37c0a8ae | |
parent | 3a3b9eb8efe08f086bcbd1d88a34355e31df7650 (diff) | |
download | forums-a45ac24bd7f0b7ffba38827c43a853af32aa512f.tar forums-a45ac24bd7f0b7ffba38827c43a853af32aa512f.tar.gz forums-a45ac24bd7f0b7ffba38827c43a853af32aa512f.tar.bz2 forums-a45ac24bd7f0b7ffba38827c43a853af32aa512f.tar.xz forums-a45ac24bd7f0b7ffba38827c43a853af32aa512f.zip |
comments
git-svn-id: file:///svn/phpbb/trunk@8779 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 427c372957..c06c246082 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2017,9 +2017,8 @@ function meta_refresh($time, $url) /** * Add a secret hash for use in links/GET requests -* @param string $link_name The name of the link; has to match the name used in check_form_key, otherwise no restrictions apply -* @param int $length The length of the key to generate -* @return sting the hash +* @param string $link_name The name of the link; has to match the name used in check_link_hash, otherwise no restrictions apply +* @return string the hash */ function generate_link_hash($link_name) @@ -2036,8 +2035,7 @@ function generate_link_hash($link_name) /** * checks a link hash - for GET requests * @param string $token the submitted token -* @param string $link_name The name of the link; has to match the name used in check_form_key, otherwise no restrictions apply -* @param int $length The length of the key to check +* @param string $link_name The name of the link * @return boolean true if all is fine */ function check_link_hash($token, $link_name) |