mirror of
https://github.com/torproject/webwml.git
synced 2024-11-26 19:20:36 +00:00
8 lines
293 B
Perl
8 lines
293 B
Perl
#!/usr/bin/env perl
|
|
|
|
# This CGI tries to do as little as possible. A URL is passed from the languages
|
|
# dropdown form generated in /include/foot.wmi and the client is redirected to that page
|
|
use CGI qw(:standard);
|
|
my $lang = param('Language');
|
|
print "Status: 302 Moved\nLocation: /$lang\n\n";
|