- Timestamp:
- 2011/03/07 15:23:39 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php
r20534 r20538 51 51 52 52 // 生年月日選択肢の取得 53 $objDate = new SC_Date_Ex(BIRTH_YEAR, date( "Y",strtotime("now")));53 $objDate = new SC_Date_Ex(BIRTH_YEAR, date('Y',strtotime('now'))); 54 54 $this->arrYear = $objDate->getYear('', START_BIRTH_YEAR, ''); 55 55 $this->arrMonth = $objDate->getMonth(true); … … 86 86 87 87 // mobile用(戻るボタンでの遷移かどうかを判定) 88 if (!empty($this->arrForm[ "return"])) {89 $_POST[ "mode"] = "return";88 if (!empty($this->arrForm['return'])) { 89 $_POST['mode'] = 'return'; 90 90 } 91 91 … … 118 118 // ログイン状態にする 119 119 $objCustomer = new SC_Customer_Ex(); 120 $objCustomer->setLogin($this->arrForm[ "email"]);120 $objCustomer->setLogin($this->arrForm['email']); 121 121 } 122 122 123 123 // 完了ページに移動させる。 124 SC_Response_Ex::sendRedirect('complete.php', array( "ci"=> SC_Helper_Customer_Ex::sfGetCustomerId($uniqid)));124 SC_Response_Ex::sendRedirect('complete.php', array('ci' => SC_Helper_Customer_Ex::sfGetCustomerId($uniqid))); 125 125 } 126 126 break; … … 172 172 173 173 // 仮会員 1 本会員 2 174 $arrResults[ "status"] = (CUSTOMER_CONFIRM_MAIL == true) ? "1" : "2";174 $arrResults['status'] = (CUSTOMER_CONFIRM_MAIL == true) ? "1" : "2"; 175 175 176 176 /* … … 182 182 // 入会時ポイント 183 183 $CONF = SC_Helper_DB_Ex::sfGetBasisData(); 184 $arrResults[ "point"] = $CONF["welcome_point"];184 $arrResults['point'] = $CONF["welcome_point"]; 185 185 186 186 if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { … … 204 204 205 205 $objMailText = new SC_SiteView_Ex(); 206 $objMailText->assign( "CONF", $CONF);206 $objMailText->assign('CONF', $CONF); 207 207 $objMailText->assign("name01", $arrForm['name01']); 208 208 $objMailText->assign("name02", $arrForm['name02']); 209 $objMailText->assign( "uniqid", $uniqid);209 $objMailText->assign('uniqid', $uniqid); 210 210 $objMailText->assignobj($this); 211 211 … … 234 234 ); 235 235 // 宛先の設定 236 $objMail->setTo($arrForm[ "email"],236 $objMail->setTo($arrForm['email'], 237 237 $arrForm["name01"] . $arrForm["name02"] ." 様"); 238 238
Note: See TracChangeset
for help on using the changeset viewer.
