View | Details | Raw Unified | Return to bug 6510
Collapse All | Expand All

(-)a/catalogue/search.pl (-2 / +1 lines)
Lines 471-477 my $scan_index_to_use; Link Here
471
471
472
for my $this_cgi ( split('&',$query_cgi) ) {
472
for my $this_cgi ( split('&',$query_cgi) ) {
473
    next unless $this_cgi;
473
    next unless $this_cgi;
474
    $this_cgi =~ m/(.?)=(.*)/;
474
    $this_cgi =~ m/(.*)=(.*)/;
475
    my $input_name = $1;
475
    my $input_name = $1;
476
    my $input_value = $2;
476
    my $input_value = $2;
477
    push @query_inputs, { input_name => $input_name, input_value => $input_value };
477
    push @query_inputs, { input_name => $input_name, input_value => $input_value };
478
- 

Return to bug 6510