We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 636b38c commit 7503d70Copy full SHA for 7503d70
1 file changed
tests/system/HTTP/IncomingRequestDetectingTest.php
@@ -128,8 +128,8 @@ public function testPathRequestURISuppressed()
128
129
public function testPathQueryString()
130
{
131
- // /?/ci/index.php/woot
132
- $_SERVER['REQUEST_URI'] = '/?/ci/woot';
+ // /index.php?/ci/woot
+ $_SERVER['REQUEST_URI'] = '/index.php?/ci/woot';
133
$_SERVER['QUERY_STRING'] = '/ci/woot';
134
$_SERVER['SCRIPT_NAME'] = '/index.php';
135
@@ -139,8 +139,8 @@ public function testPathQueryString()
139
140
public function testPathQueryStringEmpty()
141
142
143
+ // /index.php?
+ $_SERVER['REQUEST_URI'] = '/index.php?';
144
$_SERVER['QUERY_STRING'] = '';
145
146
0 commit comments