Changeset 6952 for temp


Ignore:
Timestamp:
2006/10/26 19:33:52 (20 years ago)
Author:
kakinaka
Message:

* empty log message *

Location:
temp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/module/Request.php

    r6923 r6952  
    494494        } 
    495495    } 
     496     
     497    function addPostDataArray($array, $preencoded = false) 
     498    { 
     499        foreach($array as $key => $val){ 
     500            $this->addPostData($key, $val, $preencoded); 
     501        } 
     502    }    
    496503 
    497504   /** 
  • temp/trunk/html/install/index.php

    r6951 r6952  
    235235        foreach($_POST as $key => $val){ 
    236236            if (ereg("^senddata_*", $key)){ 
    237                 $arrSendDataTmp = array(trim($key, "senddata_") => $val); 
     237                $arrSendDataTmp = array(str_replace("senddata_", "", $key) => $val); 
    238238                $arrSendData = array_merge($arrSendData, $arrSendDataTmp); 
    239239            } 
Note: See TracChangeset for help on using the changeset viewer.