Bug 1328 : improve check function

git-svn-id: http://piwigo.org/svn/trunk@4493 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou
2009-12-14 22:38:04 +00:00
parent c76b39da6f
commit 9bbe72df1e
+9 -4
View File
@@ -34,13 +34,18 @@ function check_token()
{
global $conf;
$token = hash_hmac('md5', session_id(), $conf['secret_key']);
$valid_token = hash_hmac('md5', session_id(), $conf['secret_key']);
$given_token = null;
if (!empty($_POST['pwg_token']) && ($_POST['pwg_token'] != $token))
if (!empty($_POST['pwg_token']))
{
access_denied();
$given_token = $_POST['pwg_token'];
}
elseif (!empty($_GET['pwg_token']) && ($_GET['pwg_token'] != $token))
elseif (!empty($_GET['pwg_token']))
{
$given_token = $_GET['pwg_token'];
}
if ($given_token != $valid_token)
{
access_denied();
}