|
Lines 532-540
sub getRecords {
Link Here
|
| 532 |
|| ( $facets_info->{$link_value}->{'expanded'} ) ) |
532 |
|| ( $facets_info->{$link_value}->{'expanded'} ) ) |
| 533 |
{ |
533 |
{ |
| 534 |
|
534 |
|
| 535 |
# Sanitize the link value ), ( will cause errors with CCL, |
535 |
# Sanitize the link value : parenthesis, question and exclamation mark will cause errors with CCL |
| 536 |
my $facet_link_value = $one_facet; |
536 |
my $facet_link_value = $one_facet; |
| 537 |
$facet_link_value =~ s/(\(|\))/ /g; |
537 |
$facet_link_value =~ s/[()!?¡¿؟]//g; |
| 538 |
|
538 |
|
| 539 |
# fix the length that will display in the label, |
539 |
# fix the length that will display in the label, |
| 540 |
my $facet_label_value = $one_facet; |
540 |
my $facet_label_value = $one_facet; |
| 541 |
- |
|
|