Changeset 16379 for branches/feature-module-update/html/mobile/regist
- Timestamp:
- 2007/10/11 16:41:56 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/mobile/regist/index.php
r16322 r16379 87 87 $arrRet = $objQuery->select("point", "dtb_customer", $where, array($array["id"])); 88 88 // 会員登録時の加算ポイント(購入時会員登録の場合は、ポイント加算) 89 $arrRegist['point'] = $arrRet[0]['point'] + addslashes($arrInfo['welcome_point']);89 $arrRegist['point'] = $arrRet[0]['point'] + $arrInfo['welcome_point']; 90 90 91 91 $objQuery->update("dtb_customer", $arrRegist, $where, array($array["id"])); … … 128 128 } 129 129 130 $objQuery->update("dtb_customer", $arrRegistMail, "email = '" .addslashes($email). "'AND del_flg = 0");130 $objQuery->update("dtb_customer", $arrRegistMail, "email = " . SC_Utils_Ex::sfQuoteSmart($email). " AND del_flg = 0"); 131 131 $objConn->query("COMMIT"); 132 132
Note: See TracChangeset
for help on using the changeset viewer.