Lines 517-522
sub getRecords {
Link Here
|
517 |
next; |
517 |
next; |
518 |
} |
518 |
} |
519 |
|
519 |
|
|
|
520 |
SetUTF8Flag($marc_record); |
521 |
|
520 |
my @used_datas = (); |
522 |
my @used_datas = (); |
521 |
|
523 |
|
522 |
foreach my $tag ( @{ $facet->{tags} } ) { |
524 |
foreach my $tag ( @{ $facet->{tags} } ) { |
Lines 1556-1562
sub buildQuery {
Link Here
|
1556 |
$group_OR_limits{$k} .= " or " if $group_OR_limits{$k}; |
1558 |
$group_OR_limits{$k} .= " or " if $group_OR_limits{$k}; |
1557 |
$limit_desc .= " or " if $group_OR_limits{$k}; |
1559 |
$limit_desc .= " or " if $group_OR_limits{$k}; |
1558 |
$group_OR_limits{$k} .= "$this_limit"; |
1560 |
$group_OR_limits{$k} .= "$this_limit"; |
1559 |
$limit_cgi .= "&limit=" . uri_escape($this_limit); |
1561 |
$limit_cgi .= "&limit=" . uri_escape_utf8($this_limit); |
1560 |
$limit_desc .= " $this_limit"; |
1562 |
$limit_desc .= " $this_limit"; |
1561 |
} |
1563 |
} |
1562 |
|
1564 |
|
Lines 1564-1570
sub buildQuery {
Link Here
|
1564 |
else { |
1566 |
else { |
1565 |
$limit .= " and " if $limit || $query; |
1567 |
$limit .= " and " if $limit || $query; |
1566 |
$limit .= "$this_limit"; |
1568 |
$limit .= "$this_limit"; |
1567 |
$limit_cgi .= "&limit=" . uri_escape($this_limit); |
1569 |
$limit_cgi .= "&limit=" . uri_escape_utf8($this_limit); |
1568 |
if ($this_limit =~ /^branch:(.+)/) { |
1570 |
if ($this_limit =~ /^branch:(.+)/) { |
1569 |
my $branchcode = $1; |
1571 |
my $branchcode = $1; |
1570 |
my $branchname = GetBranchName($branchcode); |
1572 |
my $branchname = GetBranchName($branchcode); |
1571 |
- |
|
|