Commit 48cbec63 authored by jake%acutex.net's avatar jake%acutex.net

Allow '\' as a path delimiter (bug 29064)

Patch Concept by <timeless@mac.com> r= jake@acutex.net
parent 7de34a38
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment