Ignore:
Timestamp:
2007/03/09 14:16:44 (19 years ago)
Author:
uehara
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/mobile/entry/index.php

    r11673 r11675  
    257257    } 
    258258 
    259     if ($arrRegist["mailmaga_flg"] == 1) { 
    260         $arrRegist["mailmaga_flg"] = 4;  
    261     } elseif ($arrRegist["mailmaga_flg"] == 2) { 
    262         $arrRegist["mailmaga_flg"] = 5;  
    263     } else { 
    264         $arrRegist["mailmaga_flg"] = 6;  
    265     }    
     259    switch($array["mailmaga_flg"]) { 
     260        case 1: 
     261            $arrRegist["mailmaga_flg"] = 4;  
     262            break; 
     263        case 2: 
     264            $arrRegist["mailmaga_flg"] = 5;  
     265            break; 
     266        default: 
     267            $arrRegist["mailmaga_flg"] = 6; 
     268            break; 
     269    } 
    266270         
    267271    $arrRegist["secret_key"] = $uniqid;     // ²¾ÅÐÏ¿IDȯ¹Ô 
Note: See TracChangeset for help on using the changeset viewer.