Changeset 16487


Ignore:
Timestamp:
2007/10/17 22:39:44 (17 years ago)
Author:
adachi
Message:

POSTパラメータ追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/upgrade/LC_Page_Upgrade_Config.php

    r16486 r16487  
    4444        $this->objForm = new SC_FormParam(); 
    4545        $this->objForm->addParam( 
    46             'product_id', 'product_id', INT_LEN, '', 
    47             array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK') 
     46            'product_id', 'product_id', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK') 
     47        ); 
     48        $this->objForm->addParam( 
     49            'auto_update_flg', 'auto_update_flg', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK') 
    4850        ); 
    4951        $this->objForm->setParam($_POST); 
     
    8789        $objReq->addPostData('site_url', SITE_URL); 
    8890        $objReq->addPostData('ssl_url', SSL_URL); 
     91        $objReq->setPostData('mode'); 
    8992        $objReq->addPostData('product_id', $objForm->getValue('product_id')); 
     93        $objReq->addPostData('auto_update_flg', $objForm->getValue('auto_update_flg')); 
    9094 
    9195        GC_Utils::gfPrintLog('* http request start'); 
Note: See TracChangeset for help on using the changeset viewer.