diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-14 22:47:04 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-14 22:52:04 +0200 |
commit | f3ce74c714e3460bb3e3e786f626e397d3139062 (patch) | |
tree | 0750fca34c23a6476475069ff823b0bafe059567 /web/lib/aur.inc.php | |
parent | 857de725d1c87da005b4ab8e9a88222fd19aab4b (diff) | |
parent | 50e97446bbcc605768811fee387efe724b84e042 (diff) | |
download | aur-f3ce74c714e3460bb3e3e786f626e397d3139062.tar.gz aur-f3ce74c714e3460bb3e3e786f626e397d3139062.tar.xz |
Merge branch 'maint'
Conflicts:
web/html/account.php
web/html/addvote.php
web/html/pkgsubmit.php
web/lib/acctfuncs.inc.php
web/template/actions_form.php
web/template/pkg_comment_form.php
web/template/pkg_comments.php
web/template/pkg_details.php
web/template/pkg_search_results.php
web/template/tu_details.php
Diffstat (limited to 'web/lib/aur.inc.php')
-rw-r--r-- | web/lib/aur.inc.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php index 5a70e771..1a6164ed 100644 --- a/web/lib/aur.inc.php +++ b/web/lib/aur.inc.php @@ -75,6 +75,16 @@ function check_sid($dbh=NULL) { return; } +# Verify the supplied token matches the expected token for POST forms +# +function check_token() { + if (isset($_POST['token'])) { + return ($_POST['token'] == $_COOKIE['AURSID']); + } else { + return false; + } +} + # verify that an email address looks like it is legitimate # function valid_email($addy) { |