X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap-cgi.git;a=blobdiff_plain;f=logout.cgi;h=19c7c37a6500e0d340fce782893eb78bb027ff91;hp=11167b40f9ff2a693a78a549a1e702045d5f29c3;hb=HEAD;hpb=e6df6b1b8d41c41c712173d0d3ff4cda5f9fa315 diff --git a/logout.cgi b/logout.cgi index 11167b4..19c7c37 100755 --- a/logout.cgi +++ b/logout.cgi @@ -1,23 +1,22 @@ #!/usr/bin/perl -# (c) 1999 Debian and Randolph Chung. Licensed under the GPL. +# $Id: logout.cgi,v 1.2 1999/09/26 01:20:39 tausq Exp $ +# (c) 1999 Randolph Chung. Licensed under the GPL. +# Copyright (c) 2011, 2015 Peter Palfrader use lib '.'; use strict vars; #use Apache::Registry; use CGI; use Util; -use Net::LDAP qw(:all); +use Net::LDAP qw(LDAP_SUCCESS LDAP_PROTOCOL_ERROR); my %config = &Util::ReadConfigFile; my $proto = ($ENV{HTTPS} ? "https" : "http"); my $query = new CGI; -my $id = $query->param('id'); my $authtoken = $query->param('authtoken'); -&Util::ClearAuthToken($authtoken); -my $doneurl = $query->param('done') || "$config{websearchurl}"; - &Util::ClearAuthToken($authtoken); +my $doneurl = $config{websearchurl}; print "Location: $proto://$ENV{SERVER_NAME}/$doneurl\n\n";