Lines 1322-1328
sub checkauth {
Link Here
|
1322 |
|
1322 |
|
1323 |
track_login_daily( $userid ); |
1323 |
track_login_daily( $userid ); |
1324 |
|
1324 |
|
1325 |
if ( defined $query->param('op') ) { |
1325 |
my $original_op_cud = $query->param('op-cud'); |
|
|
1326 |
if ( $request_method eq 'GET' ) { |
1327 |
$query->param('op-cud', undef); |
1328 |
} elsif ( $request_method eq 'POST' ) { |
1329 |
$query->param('op', undef); |
1330 |
} |
1331 |
|
1332 |
if ( defined $original_op_cud ) { |
1326 |
die "Cannot use GET for this request" |
1333 |
die "Cannot use GET for this request" |
1327 |
if $request_method ne 'POST'; |
1334 |
if $request_method ne 'POST'; |
1328 |
|
1335 |
|
1329 |
- |
|
|