We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b3460b commit 2063868Copy full SHA for 2063868
1 file changed
tests/system/HTTP/IncomingRequestDetectingTest.php
@@ -68,6 +68,14 @@ public function testPathRequestURI()
68
69
public function testPathRequestURINested()
70
{
71
+ // I'm not sure but this is a case of Apache config making such SERVER
72
+ // values?
73
+ // The current implementation doesn't use the value of the URI object.
74
+ // So I removed the code to set URI. Therefore, it's exactly the same as
75
+ // the method above as a test.
76
+ // But it may be changed in the future to use the value of the URI object.
77
+ // So I don't remove this test case.
78
+
79
// /ci/index.php/woot?code=good#pos
80
$_SERVER['REQUEST_URI'] = '/index.php/woot';
81
$_SERVER['SCRIPT_NAME'] = '/index.php';
0 commit comments