Roxen.git/
server/
modules/
filesystems/
filesystem.pike
Branch:
Tag:
Non-build tags
All tags
No tags
1999-01-14
1999-01-14 03:16:59 by Henrik Grubbström (Grubba) <grubba@grubba.org>
575f783df4215e4025e0676620e02a1878caca15 (
6
lines) (+
4
/-
2
)
[
Show
|
Annotate
]
Branch:
5.2
Fixed redirect encoding bug in dead code.
Rev: server/modules/filesystems/filesystem.pike:1.49
8:
inherit "roxenlib"; inherit "socket";
-
constant cvs_version= "$Id: filesystem.pike,v 1.
48
1999/01/
13
23
:
25
:
25
grubba Exp $";
+
constant cvs_version= "$Id: filesystem.pike,v 1.
49
1999/01/
14
03
:
16
:
59
grubba Exp $";
constant thread_safe=1;
359:
/* FIXME: Should probably keep prestates etc too. * /grubba 1999-01-14 */
-
string new_query = id->not_query[..sizeof(id->not_query)-2] +
+
string new_query =
+
http_encode_string(
id->not_query[..sizeof(id->not_query)-2]
)
+
(id->query?("?" + id->query):""); TRACE_LEAVE("Redirecting to \"" + new_query + "\""); return http_redirect(new_query, id);