don't escape authtoken
authorMartin Zobel-Helas <zobel@debian.org>
Sun, 15 Dec 2013 10:06:54 +0000 (11:06 +0100)
committerMartin Zobel-Helas <zobel@debian.org>
Sun, 15 Dec 2013 10:06:54 +0000 (11:06 +0100)
Signed-off-by: Martin Zobel-Helas <zobel@debian.org>
search.cgi

index dc9f948..fade2a7 100755 (executable)
@@ -18,7 +18,7 @@ my %config = &Util::ReadConfigFile;
 
 my $query = new CGI;
 my $id = uri_escape($query->param('id'));
-my $authtoken = uri_escape($query->param('authtoken'));
+my $authtoken = $query->param('authtoken');
 my $password = &Util::CheckAuthToken($authtoken);
 my $dosearch = uri_escape($query->param('dosearch'));
 my $searchdn = uri_escape($query->param('searchdn'));