- Timestamp:
- 2007/10/17 22:39:44 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/pages/upgrade/LC_Page_Upgrade_Config.php
r16486 r16487 44 44 $this->objForm = new SC_FormParam(); 45 45 $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') 48 50 ); 49 51 $this->objForm->setParam($_POST); … … 87 89 $objReq->addPostData('site_url', SITE_URL); 88 90 $objReq->addPostData('ssl_url', SSL_URL); 91 $objReq->setPostData('mode'); 89 92 $objReq->addPostData('product_id', $objForm->getValue('product_id')); 93 $objReq->addPostData('auto_update_flg', $objForm->getValue('auto_update_flg')); 90 94 91 95 GC_Utils::gfPrintLog('* http request start');
Note: See TracChangeset
for help on using the changeset viewer.