https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14716

--- Comment #20 from Eric Phetteplace <[email protected]> ---
If anyone else runs into this, I'm using a small bit of OPAC JavaScript as a
work-around since many of records are affected:

// fix 830$a series links ending in semicolons, see bug #14716
$('.results_summary.series a').each(function(){
    // URI-encoded semicolon
    var href = $(this).attr('href').replace(/;/g, '%3B')
    $(this).attr('href', href)
})

Stuffing unencoded text inside URLs seems like a bad idea. If Japanese
characters aren't working, maybe that's an issue with the url-encode function
itself but not the approach taken to resolve this bug? I would think that
almost anything being put in an href attribute would need to go through
url-encode.

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to