Bugzilla – Attachment 2764 Details for
Bug 5410
"Right truncation not supported" error when running link_bibs_to_authorities.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Adds "do-not-truncate" in the search queries of Heading.pm
kx_fix_truncation.patch (text/plain), 983 bytes, created by
Frédérick Capovilla
on 2010-11-16 19:14:20 UTC
(
hide
)
Description:
Adds "do-not-truncate" in the search queries of Heading.pm
Filename:
MIME Type:
Creator:
Frédérick Capovilla
Created:
2010-11-16 19:14:20 UTC
Size:
983 bytes
patch
obsolete
>diff -aurN src-master/C4/Heading.pm src-fix-truncation/C4/Heading.pm >--- src-master/C4/Heading.pm 2010-11-16 14:03:45.000000000 -0500 >+++ src-fix-truncation/C4/Heading.pm 2010-11-16 14:02:50.000000000 -0500 >@@ -106,7 +106,7 @@ > > sub authorities { > my $self = shift; >- my $query = qq(Match-heading,ext="$self->{'search_form'}"); >+ my $query = qq(Match-heading,do-not-truncate,ext="$self->{'search_form'}"); > $query .= $self->_query_limiters(); > my ($error, $results, $total_hits) = SimpleSearch( $query, undef, undef, [ "authorityserver" ] ); > return $results; >@@ -123,7 +123,7 @@ > > sub preferred_authorities { > my $self = shift; >- my $query = "Match-heading-see-from,ext='$self->{'search_form'}'"; >+ my $query = "Match-heading-see-from,do-not-truncate,ext='$self->{'search_form'}'"; > $query .= $self->_query_limiters(); > my ($error, $results, $total_hits) = SimpleSearch( $query, undef, undef, [ "authorityserver" ] ); > return $results;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 5410
:
2764
|
3077