summaryrefslogtreecommitdiff
path: root/lib/VNDB/Util/Auth.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2015-09-20 10:48:50 +0200
committerYorhel <git@yorhel.nl>2015-09-20 10:48:50 +0200
commit83b62a3f95a420134320955d21c54d46bc64e94c (patch)
treee7ec800e46ea6d56f1bce7c6320ca41d3fca6a08 /lib/VNDB/Util/Auth.pm
parent940b089ea5f02ef9bc80b4b82c320c4e9d2dbb34 (diff)
Use the new reqQuery() + update usage of reqPath() for TUWF 1.0
Diffstat (limited to 'lib/VNDB/Util/Auth.pm')
-rw-r--r--lib/VNDB/Util/Auth.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/Util/Auth.pm b/lib/VNDB/Util/Auth.pm
index d6a35d1d..a1c6cf08 100644
--- a/lib/VNDB/Util/Auth.pm
+++ b/lib/VNDB/Util/Auth.pm
@@ -200,7 +200,7 @@ sub authGetCode {
# form-id is not given, the path of the current requests is used.
sub authCheckCode {
my $self = shift;
- my $id = shift || '/'.$self->reqPath();
+ my $id = shift || $self->reqPath();
my $code = shift || $self->reqParam('formcode');
return _incorrectcode($self) if !$code || $code !~ qr/^[0-9a-f]{16}$/;
my $time = time;