diff options
author | adrianp <adrianp@pkgsrc.org> | 2005-01-06 13:15:27 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2005-01-06 13:15:27 +0000 |
commit | 7239c88827f4ae8e3993c86fa80622ebfee348ba (patch) | |
tree | 1dca14c63edb567e4d23f3f5f00b757ff2be0f96 /devel/bugzilla/patches | |
parent | 6d0680620875ae8bf0b2ead5cc7b0189ce7ac35d (diff) | |
download | pkgsrc-7239c88827f4ae8e3993c86fa80622ebfee348ba.tar.gz |
Bump to nb1 for recent security issue:
https://bugzilla.mozilla.org/show_bug.cgi?id=272620
Diffstat (limited to 'devel/bugzilla/patches')
-rw-r--r-- | devel/bugzilla/patches/patch-aa | 16 | ||||
-rw-r--r-- | devel/bugzilla/patches/patch-ab | 16 |
2 files changed, 32 insertions, 0 deletions
diff --git a/devel/bugzilla/patches/patch-aa b/devel/bugzilla/patches/patch-aa new file mode 100644 index 00000000000..269c04112d3 --- /dev/null +++ b/devel/bugzilla/patches/patch-aa @@ -0,0 +1,16 @@ +$NetBSD: patch-aa,v 1.1 2005/01/06 13:15:27 adrianp Exp $ + +--- template/en/default/global/code-error.html.tmpl.orig 2005-01-06 12:09:35.000000000 +0000 ++++ template/en/default/global/code-error.html.tmpl 2005-01-06 12:10:39.000000000 +0000 +@@ -259,7 +259,10 @@ + the time this message appeared. + </p> + <script type="text/javascript"> <!-- +- document.write("<p>URL: " + document.location + "</p>"); ++ document.write("<p>URL: " + ++ document.location.href.replace(/&/g,"&") ++ .replace(/</g,"<") ++ .replace(/>/g,">") + "</p>"); + // --> + </script> + </tt> diff --git a/devel/bugzilla/patches/patch-ab b/devel/bugzilla/patches/patch-ab new file mode 100644 index 00000000000..4d55cee3e9c --- /dev/null +++ b/devel/bugzilla/patches/patch-ab @@ -0,0 +1,16 @@ +$NetBSD: patch-ab,v 1.1 2005/01/06 13:15:27 adrianp Exp $ + +--- Bugzilla/Error.pm.orig 2005-01-06 12:11:48.000000000 +0000 ++++ Bugzilla/Error.pm 2005-01-06 12:13:13.000000000 +0000 +@@ -79,7 +79,10 @@ + time this message appeared. + </p> + <script type="text/javascript"> <!-- +- document.write("<p>URL: " + document.location + "</p>"); ++ document.write("<p>URL: " + ++ document.location.href.replace(/&/g,"&") ++ .replace(/</g,"<") ++ .replace(/>/g,">") + "</p>"); + // --> + </script> + <p>Template->process() failed twice.<br> |