diff --git a/src/zend/globals.rs b/src/zend/globals.rs index 2e3789e6c..11e7b2e45 100644 --- a/src/zend/globals.rs +++ b/src/zend/globals.rs @@ -284,9 +284,10 @@ impl ProcessGlobals { /// Get the HTTP Request variables. Equivalent of $_REQUEST. pub fn http_request_vars(&self) -> &ZendHashTable { - self.http_globals[TRACK_VARS_REQUEST as usize] - .array() - .expect("Type is not a ZendArray") + todo!("$_REQUEST super global was erroneously fetched from http_globals which resulted in an out-of-bounds access. A new implementation is needed."); + // self.http_globals[TRACK_VARS_REQUEST as usize] + // .array() + // .expect("Type is not a ZendArray") } /// Get the HTTP Environment variables. Equivalent of $_ENV.