Lines 106-112
heading.
Link Here
|
106 |
|
106 |
|
107 |
sub authorities { |
107 |
sub authorities { |
108 |
my $self = shift; |
108 |
my $self = shift; |
109 |
my $query = qq(Match-heading,ext="$self->{'search_form'}"); |
109 |
my $query = qq(Match-heading,do-not-truncate,ext="$self->{'search_form'}"); |
110 |
$query .= $self->_query_limiters(); |
110 |
$query .= $self->_query_limiters(); |
111 |
my ($error, $results, $total_hits) = SimpleSearch( $query, undef, undef, [ "authorityserver" ] ); |
111 |
my ($error, $results, $total_hits) = SimpleSearch( $query, undef, undef, [ "authorityserver" ] ); |
112 |
return $results; |
112 |
return $results; |
Lines 123-129
that are a preferred form of the heading.
Link Here
|
123 |
|
123 |
|
124 |
sub preferred_authorities { |
124 |
sub preferred_authorities { |
125 |
my $self = shift; |
125 |
my $self = shift; |
126 |
my $query = "Match-heading-see-from,ext='$self->{'search_form'}'"; |
126 |
my $query = "Match-heading-see-from,do-not-truncate,ext='$self->{'search_form'}'"; |
127 |
$query .= $self->_query_limiters(); |
127 |
$query .= $self->_query_limiters(); |
128 |
my ($error, $results, $total_hits) = SimpleSearch( $query, undef, undef, [ "authorityserver" ] ); |
128 |
my ($error, $results, $total_hits) = SimpleSearch( $query, undef, undef, [ "authorityserver" ] ); |
129 |
return $results; |
129 |
return $results; |
130 |
- |
|
|