diff options
author | xue <> | 2006-07-26 02:07:46 +0000 |
---|---|---|
committer | xue <> | 2006-07-26 02:07:46 +0000 |
commit | 0a72d15b054e6548135ae813aab0d2ee526c49aa (patch) | |
tree | dba6c672af36ae7c4178833e510c90a505a4cf39 /framework/Web/THttpRequest.php | |
parent | f5e26ba0787c0131ed37e08b283512e0858a2729 (diff) |
Fixed a bug in parsing URL.
Diffstat (limited to 'framework/Web/THttpRequest.php')
-rw-r--r-- | framework/Web/THttpRequest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Web/THttpRequest.php b/framework/Web/THttpRequest.php index b4e2af65..01827f33 100644 --- a/framework/Web/THttpRequest.php +++ b/framework/Web/THttpRequest.php @@ -547,6 +547,7 @@ class THttpRequest extends TApplicationComponent implements IteratorAggregate,Ar $getVariables[$serviceID]=$path;
else
$getVariables[$path]='';
+ $index++;
}
}
return $getVariables;
|