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
48cbec63
Commit
48cbec63
authored
Jun 19, 2001
by
jake%acutex.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow '\' as a path delimiter (bug 29064)
Patch Concept by <timeless@mac.com> r= jake@acutex.net
parent
7de34a38
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
CGI.pl
CGI.pl
+2
-2
No files found.
CGI.pl
View file @
48cbec63
...
...
@@ -910,8 +910,8 @@ Content-type: text/html
}
if
(
!
defined
$nexturl
||
$nexturl
eq
""
)
{
# Sets nexturl to be argv0, stripping everything up to and
# including the last slash.
$0
=~
m:
[
^/
]
*
$:
;
# including the last slash
(or backslash on Windows)
.
$0
=~
m:
[
^/
\\
]
*
$:
;
$nexturl
=
$&
;
}
my
$method
=
"POST"
;
...
...
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