LP#1687545: Use ampersand instead of semicolon in generated URLs user/miker/lp-1687545-amp-in-urls
authorMike Rylander <mrylander@gmail.com>
Thu, 21 Jan 2021 16:20:44 +0000 (11:20 -0500)
committerMike Rylander <mrylander@gmail.com>
Thu, 21 Jan 2021 16:20:44 +0000 (11:20 -0500)
Since we have a local version of the CGI TT plugin, and that's what is
used in the mkurl() TT macro, we can tell it to use ampersands instead
of semicolons when building OPAC links.  This commit imports CGI with
the -oldstyle_urls flag, which does exactly that.

Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/perlmods/lib/OpenILS/WWW/EGWeb/CGI_utf8.pm

index 0239e1b..2e51936 100644 (file)
@@ -13,7 +13,7 @@ package OpenILS::WWW::EGWeb::CGI_utf8;
 use strict;
 use warnings;
 use base 'Template::Plugin';
-use CGI qw(:all -utf8);
+use CGI qw(:all -utf8 -oldstyle_urls);
 
 sub new {
     my $class   = shift;