Changeset 238
- Timestamp:
- 02/07/07 11:06:57 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/ipo/request/stubWebRequest.php
r142 r238 25 25 protected function doConstuct() 26 26 { 27 $this-> paramValues = array_merge($_GET, $_POST);27 $this->unsecureParams = array_merge($_GET, $_POST); 28 28 foreach ($_SERVER as $key => $value) { 29 29 if (substr($key, 0, 5) == 'HTTP_' || substr($key, 0, 7) == 'REMOTE_') { 30 $this-> headerValues[$key] = $value;30 $this->unsecureHeaders[$key] = $value; 31 31 } 32 32 } 33 $this-> cookieValues = $_COOKIE;33 $this->unsecureCookies = $_COOKIE; 34 34 } 35 35 }
