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

(-)a/authorities/auth_finder.pl (-9 / +6 lines)
Lines 106-114 if ( $op eq "do_search" ) { Link Here
106
    push @field_data,
106
    push @field_data,
107
      { term => "value_main", val => scalar $query->param('value_main') || "" };
107
      { term => "value_main", val => scalar $query->param('value_main') || "" };
108
    push @field_data,
108
    push @field_data,
109
      { term => "value_any", val => scalar $query->param('value_any') || "" };
110
    push @field_data,
111
      { term => "value_match", val => scalar $query->param('value_match') || "" };
109
      { term => "value_match", val => scalar $query->param('value_match') || "" };
110
    push @field_data,
111
      { term => "value_any", val => scalar $query->param('value_any') || "" };
112
112
113
    my @numbers = ();
113
    my @numbers = ();
114
    if ( $total > $resultsperpage ) {
114
    if ( $total > $resultsperpage ) {
Lines 150-161 if ( $op eq "do_search" ) { Link Here
150
        from             => $from,
150
        from             => $from,
151
        to               => $to,
151
        to               => $to,
152
        numbers          => \@numbers,
152
        numbers          => \@numbers,
153
        operator_mainstr => ( @operator > 0 && $operator[0] )
153
        operator_mainstr => ( @operator > 0 && $operator[0] ) ? $operator[0] : '',
154
        ? $operator[0]
154
        operator_main    => ( @operator > 1 && $operator[1] ) ? $operator[1] : '',
155
        : '',
155
        operator_match   => ( @operator > 2 && $operator[2] ) ? $operator[2] : '',
156
        operator_main  => ( @operator > 1 && $operator[1] ) ? $operator[1] : '',
156
        operator_any     => ( @operator > 3 && $operator[3] ) ? $operator[3] : '',
157
        operator_any   => ( @operator > 2 && $operator[2] ) ? $operator[2] : '',
158
        operator_match => ( @operator > 3 && $operator[3] ) ? $operator[3] : '',
159
    );
157
    );
160
}
158
}
161
else {
159
else {
162
- 

Return to bug 21455