2001-09-05
2001-09-05 11:02:35 by Jonas Wallden <jonasw@roxen.com>
-
9934d6f101502c3ed6296cf7cfd268d77a82f611
(8 lines)
(+6/-2)
[
Show
| Annotate
]
Branch: 5.2
Fix for missing ":" chars in URLs on NT. (Reviewed by Grubba.)
Rev: server/base_server/configuration.pike:1.482
5:
// @appears Configuration
//! A site's main configuration
- constant cvs_version = "$Id: configuration.pike,v 1.481 2001/09/04 05:42:33 hop Exp $";
+ constant cvs_version = "$Id: configuration.pike,v 1.482 2001/09/05 11:02:35 jonasw Exp $";
#include <module.h>
#include <module_constants.h>
#include <roxen.h>
609: Inside #if defined(__NT__)
static mixed strip_fork_information(RequestID id)
{
array a = id->not_query/"::";
- id->not_query = a[0]-":";
+ // FIX: Must not subtract ":" chars since it breaks proper URL:s,
+ // e.g. "/internal-roxen-colorbar:x,y,z" and several others.
+ // id->not_query = a[0]-":";
+ id->not_query = a[0];
id->misc->fork_information = a[1..];
return 0;
}