diff options
author | jake%acutex.net <> | 2001-09-01 06:51:35 +0000 |
---|---|---|
committer | jake%acutex.net <> | 2001-09-01 06:51:35 +0000 |
commit | 415a5d128205e8d6b6749f962cf25c81316389f9 (patch) | |
tree | daded32d7e210a99b91cc2609651d32d5184d854 | |
parent | 21c2f341eda381ea88b32f48738869dca2e56253 (diff) | |
download | bugs-415a5d128205e8d6b6749f962cf25c81316389f9.tar bugs-415a5d128205e8d6b6749f962cf25c81316389f9.tar.gz bugs-415a5d128205e8d6b6749f962cf25c81316389f9.tar.bz2 bugs-415a5d128205e8d6b6749f962cf25c81316389f9.tar.xz bugs-415a5d128205e8d6b6749f962cf25c81316389f9.zip |
Fix for bug 42810 - Bugzilla would choke if your product name contained a ' mark.
Patch by Christian Reis <kiko@async.com.br>
r= justdave@syndicomm.com, caillon@returnzero.com
-rw-r--r-- | globals.pl | 2 | ||||
-rwxr-xr-x | query.cgi | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/globals.pl b/globals.pl index dcfbce883..af3c26a3d 100644 --- a/globals.pl +++ b/globals.pl @@ -409,7 +409,7 @@ sub GenerateCode { $result = ""; foreach my $k (sort { uc($a) cmp uc($b)} eval("keys $name")) { $result .= GenerateCode("\$" . substr($name, 1) . - "{'" . $k . "'}"); + "{" . PerlQuote($k) . "}"); } return $result; } else { @@ -347,7 +347,7 @@ sub make_js_array { foreach my $p ( @prods ) { # join each element with a "," case-insensitively alpha sorted if ( $data{$p} ) { - $ret .= $arr."['$p'] = ["; + $ret .= $arr."[".SqlQuote($p)."] = ["; # the SqlQuote() protects our 's. my @tmp = map( SqlQuote( $_ ), @{ $data{$p} } ); # do the join on a sorted, quoted list |