It looks like we're already getting the titles back in decoded UTF8 form
now, so we don't need to monkey with them via clean_text(). Patron
information, on the other hand, doesn't get corrupted when we call
clean_text(), so they probably are not already in decoded UTF8 form.
More to investigate but wanted to note this in code for now.
Signed-off-by: Dan Scott <dscott@laurentian.ca>
sub title_id {
my $self = shift;
my $t = ($self->{mods}) ? $self->{mods}->title : $self->{copy}->dummy_title;
- return OpenILS::SIP::clean_text($t);
+ return $t;
}
sub permanent_location {