]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - html/cgi-bin/captive/index.cgi
captive: Don't compare action string
[ipfire-2.x.git] / html / cgi-bin / captive / index.cgi
index 8067f25d9763638b156cb747d834588ee87cbdf3..05619b47c3238b3dcb09c80830cb53d4883a7a91 100755 (executable)
@@ -53,8 +53,8 @@ unless (-f $clients){ system("touch $clients"); }
 #Read settings
 &General::readhash("$settingsfile", \%settings) if(-f $settingsfile);
 
-#Actions
-if ($cgiparams{'ACTION'} eq "$Lang::tr{'gpl i accept these terms and conditions'}"){
+# Actions
+if ($cgiparams{'ACTION'} eq "SUBMIT") {
        #Get Clients IP-Address
        my $ip_address = $ENV{X_FORWARDED_FOR} || $ENV{REMOTE_ADDR} ||"";
 
@@ -82,7 +82,7 @@ if ($cgiparams{'ACTION'} eq "$Lang::tr{'gpl i accept these terms and conditions'
        }       
 }
 
-if ($cgiparams{'ACTION'} eq "$Lang::tr{'Captive activate'}"){
+if ($cgiparams{'ACTION'} eq "SUBMIT") {
        my $ip_address;
        my $mac_address;
        my $granted=0;