Ignore:
Timestamp:
2009/06/09 21:33:21 (15 years ago)
Author:
Seasoft
Message:

merge r17989
・取得元: version-2_4
【取得元のログメッセージ】

  • #447 分対応。 モバイルサイトの会員登録情報変更ができない不具合を修正しました。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/mypage/LC_Page_Mypage_Change.php

    r17927 r18083  
    353353                    $passlen = strlen($this->arrForm['password']); 
    354354                    $this->passlen = $this->lfPassLen($passlen); 
     355 
     356                    // メール受け取り 
     357                    if (!isset($_POST['mailmaga_flg'])) $_POST['mailmaga_flg'] = ""; 
     358                    if (strtolower($_POST['mailmaga_flg']) == "on") { 
     359                        $this->arrForm['mailmaga_flg'] = "2"; 
     360                    } else { 
     361                        $this->arrForm['mailmaga_flg'] = "3"; 
     362                    } 
    355363 
    356364                    $this->tpl_mainpage = 'mypage/change_confirm.tpl'; 
     
    538546                $val = mb_convert_kana($val ,$mb_convert_kana_option); 
    539547            } 
    540              
    541             // メールマガジン 
    542             if ($key == 'mailmaga_flg') { 
    543                 if (strtolower($val) == "on") { 
    544                     $val = "2"; 
    545                 } else if ($val != "2") { 
    546                     $val = "3"; 
    547                 } 
    548             } 
    549548        } 
    550549        return $array; 
Note: See TracChangeset for help on using the changeset viewer.