Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
310ce18f
Commit
310ce18f
authored
Apr 11, 1999
by
terry%netscape.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug 4928 -- wasn't encoding multi-line value fields properly,
which busted modern browsers (like, Mozilla itself).
parent
649a61fb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
10 deletions
+2
-10
CGI.pl
CGI.pl
+2
-10
No files found.
CGI.pl
View file @
310ce18f
...
...
@@ -186,19 +186,11 @@ sub value_quote {
$var
=~
s/</\</g
;
$var
=~
s/>/\>/g
;
$var
=~
s/"/\"/g
;
$var
=~
s/\n/\
/g
;
$var
=~
s/\r/\
/g
;
return
$var
;
}
sub
value_unquote
{
my
(
$var
)
=
(
@_
);
$var
=~
s/\"/\"/g
;
$var
=~
s/\</</g
;
$var
=~
s/\>/>/g
;
$var
=~
s/\&/\&/g
;
return
$var
;
}
sub
navigation_header
{
if
(
defined
$::COOKIE
{
"BUGLIST"
}
&&
$::COOKIE
{
"BUGLIST"
}
ne
""
)
{
my
@bugs
=
split
(
/:/
,
$::COOKIE
{
"BUGLIST"
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment