diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-03-17 00:08:42 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-03-17 00:08:42 +0000 |
commit | 14f4e7b14df6d0a30823b90b66c4f1cb2eb87add (patch) | |
tree | b4b13096279ff96ce8a6746065d7080abbf2b95a | |
parent | ade367296c479b593370a659c6c75c24c8c73526 (diff) |
Moving from HTTP_USER_AGENT to GATEWAY_INTRFACE where appropriate
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@921 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | menu.pl | 4 | ||||
-rwxr-xr-x | net-setup.pl | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -156,7 +156,7 @@ sub check_password { if ($form->{password}) { if (! Session::password_check($form, $form->{login}, $form->{password})) { - if ($ENV{HTTP_USER_AGENT}) { + if ($ENV{GATEWAY_INTERFACE}) { &getpassword; } else { $form->error(__FILE__.':'.__LINE__.': '.$locale->text('Access Denied!')); @@ -167,7 +167,7 @@ sub check_password { } } else { - if ($ENV{HTTP_USER_AGENT}) { + if ($ENV{GATEWAY_INTERFACE}) { $ENV{HTTP_COOKIE} =~ s/;\s*/;/g; @cookies = split /;/, $ENV{HTTP_COOKIE}; foreach (@cookies) { diff --git a/net-setup.pl b/net-setup.pl index 4b70aec0..594847e8 100755 --- a/net-setup.pl +++ b/net-setup.pl @@ -33,10 +33,10 @@ if (!$@){ $| = 1; -#not sure how safe this is. If the browser sends a blank HTTP_USER_AGENT +#not sure how safe this is. If the browser sends a blank GATEWAY_INTERFACE #will this script destroy part of the install? #This script should probably be made inaccessible via HTTP until this feature is working -if (($ENV{HTTP_USER_AGENT})||($ENV{HTTP_HOST})) { +if (($ENV{GATEWAY_INTERFACE})||($ENV{HTTP_HOST})) { print "Content-type: text/html\n\nThis does not work yet! use $0 from the command line"; exit; } |