|
Lines 38-43
sub get_link {
Link Here
|
| 38 |
if ( $self->{'cache'}->{$search_form.$auth_type}->{'cached'} ) { |
38 |
if ( $self->{'cache'}->{$search_form.$auth_type}->{'cached'} ) { |
| 39 |
$authid = $self->{'cache'}->{$search_form.$auth_type}->{'authid'}; |
39 |
$authid = $self->{'cache'}->{$search_form.$auth_type}->{'authid'}; |
| 40 |
$fuzzy = $self->{'cache'}->{$search_form.$auth_type}->{'fuzzy'}; |
40 |
$fuzzy = $self->{'cache'}->{$search_form.$auth_type}->{'fuzzy'}; |
|
|
41 |
$match_count = $self->{'cache'}->{$search_form.$auth_type}->{'match_count'}; |
| 41 |
} |
42 |
} |
| 42 |
else { |
43 |
else { |
| 43 |
|
44 |
|
|
Lines 78-83
sub get_link {
Link Here
|
| 78 |
$self->{'cache'}->{$search_form.$auth_type}->{'cached'} = 1; |
79 |
$self->{'cache'}->{$search_form.$auth_type}->{'cached'} = 1; |
| 79 |
$self->{'cache'}->{$search_form.$auth_type}->{'authid'} = $authid; |
80 |
$self->{'cache'}->{$search_form.$auth_type}->{'authid'} = $authid; |
| 80 |
$self->{'cache'}->{$search_form.$auth_type}->{'fuzzy'} = $fuzzy; |
81 |
$self->{'cache'}->{$search_form.$auth_type}->{'fuzzy'} = $fuzzy; |
|
|
82 |
$self->{'cache'}->{$search_form.$auth_type}->{'match_count'} = $match_count; |
| 81 |
} |
83 |
} |
| 82 |
return $self->SUPER::_handle_auth_limit($authid), $fuzzy, $match_count; |
84 |
return $self->SUPER::_handle_auth_limit($authid), $fuzzy, $match_count; |
| 83 |
} |
85 |
} |
| 84 |
- |
|
|