Changeset 238

Show
Ignore:
Timestamp:
02/07/07 11:06:57 (2 years ago)
Author:
mikey
Message:

bugfix: used wrong properties for saving param values

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/ipo/request/stubWebRequest.php

    r142 r238  
    2525    protected function doConstuct() 
    2626    { 
    27         $this->paramValues = array_merge($_GET, $_POST); 
     27        $this->unsecureParams = array_merge($_GET, $_POST); 
    2828        foreach ($_SERVER as $key => $value) { 
    2929            if (substr($key, 0, 5) == 'HTTP_' || substr($key, 0, 7) == 'REMOTE_') { 
    30                 $this->headerValues[$key] = $value; 
     30                $this->unsecureHeaders[$key] = $value; 
    3131            } 
    3232        } 
    33         $this->cookieValues = $_COOKIE; 
     33        $this->unsecureCookies = $_COOKIE; 
    3434    } 
    3535}