- Timestamp:
- 2012/02/17 02:42:21 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/helper/SC_Helper_Customer.php
r21515 r21527 202 202 'dtb_customer', 'customer_id = ?', 203 203 array($customer_id)); 204 $return =205 strlen($arrResults['email']) >= 1 && $email === $arrResults['email']204 $return 205 = strlen($arrResults['email']) >= 1 && $email === $arrResults['email'] 206 206 || strlen($arrResults['email_mobile']) >= 1 && $email === $arrResults['email_mobile'] 207 207 ; … … 466 466 467 467 if (isset($objErr->arrErr['password']) 468 && $objFormParam->getValue('password') == DEFAULT_PASSWORD) {468 && $objFormParam->getValue('password') == DEFAULT_PASSWORD) { 469 469 unset($objErr->arrErr['password']); 470 470 unset($objErr->arrErr['password02']); … … 601 601 $objErr->doFunc(array('最終購入日(開始日)','登録・更新日(終了日)', 'search_buy_start_year', 'search_buy_start_month', 'search_buy_start_day', 'search_buy_end_year', 'search_buy_end_month', 'search_buy_end_day'), array('CHECK_SET_TERM')); 602 602 603 if ((SC_Utils_Ex::sfIsInt($array['search_buy_total_from']) 604 && SC_Utils_Ex::sfIsInt($array['search_buy_total_to'])) 605 && ($array['search_buy_total_from'] > $array['buy_total_to'])) { 603 if (SC_Utils_Ex::sfIsInt($array['search_buy_total_from']) 604 && SC_Utils_Ex::sfIsInt($array['search_buy_total_to']) 605 && $array['search_buy_total_from'] > $array['buy_total_to'] 606 ) { 606 607 $objErr->arrErr['search_buy_total_from'] .= '※ 購入金額の指定範囲が不正です。'; 607 608 } 608 609 609 if ((SC_Utils_Ex::sfIsInt($array['search_buy_times_from']) 610 && SC_Utils_Ex::sfIsInt($array['search_buy_times_to'])) 611 && ($array['search_buy_times_from'] > $array['search_buy_times_to'])) { 610 if (SC_Utils_Ex::sfIsInt($array['search_buy_times_from']) 611 && SC_Utils_Ex::sfIsInt($array['search_buy_times_to']) 612 && $array['search_buy_times_from'] > $array['search_buy_times_to'] 613 ) { 612 614 $objErr->arrErr['search_buy_times_from'] .= '※ 購入回数の指定範囲が不正です。'; 613 615 }
Note: See TracChangeset
for help on using the changeset viewer.
