Ignore:
Timestamp:
2010/07/20 13:25:33 (16 years ago)
Author:
kajiwara
Message:

EC-CUBE Ver2.4.4 分コミット。詳細はこちら( http://www.ec-cube.net/release/detail.php?release_id=223

Location:
trunk/data/class/pages/campaign
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/class/pages/campaign/LC_Page_Campaign.php

    r17653 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
     
    329329            $table = "vw_product_class AS prdcls"; 
    330330            $where = "product_id = ?"; 
    331             $objQuery->setorder("rank1 DESC, rank2 DESC"); 
     331            $objQuery->setOrder("rank1 DESC, rank2 DESC"); 
    332332            $arrRet = $objQuery->select($col, $table, $where, array($product_id)); 
    333333        } 
     
    374374        $where = "del_flg = 0"; 
    375375        $order = "payment_id"; 
    376         $objQuery->setorder($order); 
     376        $objQuery->setOrder($order); 
    377377        $arrRet = $objQuery->select($col, $from, $where); 
    378378        return $arrRet; 
  • trunk/data/class/pages/campaign/LC_Page_CampaignApplication.php

    r18562 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
  • trunk/data/class/pages/campaign/LC_Page_CampaignComplete.php

    r17653 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
  • trunk/data/class/pages/campaign/LC_Page_CampaignEntry.php

    r18562 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
     
    8888                                 array(  "column" => "addr02", "convert" => "aKV" ), 
    8989                                 array(  "column" => "email", "convert" => "a" ), 
    90                                  array(  "column" => "email2", "convert" => "a" ), 
     90                                 array(  "column" => "email02", "convert" => "a" ), 
    9191                                 array(  "column" => "email_mobile", "convert" => "a" ), 
    92                                  array(  "column" => "email_mobile2", "convert" => "a" ), 
     92                                 array(  "column" => "email_mobile02", "convert" => "a" ), 
    9393                                 array(  "column" => "tel01", "convert" => "n" ), 
    9494                                 array(  "column" => "tel02", "convert" => "n" ), 
     
    100100                                 array(  "column" => "job", "convert" => "n" ), 
    101101                                 array(  "column" => "birth", "convert" => "n" ), 
     102                                 array(  "column" => "year",  "convert" => "n"), 
     103                                 array(  "column" => "month", "convert" => "n"), 
     104                                 array(  "column" => "day",   "convert" => "n"), 
    102105                                 array(  "column" => "reminder", "convert" => "n" ), 
    103106                                 array(  "column" => "reminder_answer", "convert" => "aKV"), 
     
    130133            if ($this->arrErr || $_POST["mode"] == "return") {      // 入力エラーのチェック 
    131134                foreach($arrRegistColumn as $key) { 
    132                     $this->$key['column'] = $arrForm[$key['column']]; 
     135                    $this->$key['column'] = $this->arrForm[$key['column']]; 
    133136                } 
    134137 
Note: See TracChangeset for help on using the changeset viewer.