Closed (fixed)
Project:
Drupal core
Version:
6.x-dev
Component:
base system
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Nov 2007 at 10:41 UTC
Updated:
14 Oct 2008 at 06:48 UTC
under IIS5.1/PHP5.2.4 variable $_SERVER['QUERY_STRING'] isn't set if empty
part of function request_uri in bootstrap.inc:
original (drupal 5.3):
$uri = $_SERVER['SCRIPT_NAME'] .'?'.$_SERVER['QUERY_STRING'];
modified:
$uri = $_SERVER['SCRIPT_NAME'] .'?';
if (isset($_SERVER['QUERY_STRING']))
$uri .= $_SERVER['QUERY_STRING'];
Comments
Comment #1
alpritt commentedPatches need an actual patch file.
Comment #2
mot commenteddaniel.rott, please provide detailed information on how to reproduce.
Comment #3
mot commentedSince no more Information has been provided since weeks, I closed this Issue because there is no way to verify this. If the original Poster or another Reporter stumbles over the same Problem please re-open the ticket and provide more Information. It looks like a compability Issue with the IIS Webserver running in XYZ? Mode.