Changeset 1067


Ignore:
Timestamp:
2007/01/17 14:46:03 (17 years ago)
Author:
uehara
Message:
 
Location:
temp/test-xoops.ec-cube.net/html
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • temp/test-xoops.ec-cube.net/html/include/registerform.php

    r1066 r1067  
    9393*/ 
    9494 
    95 $mailmaga_option = new XoopsFormCheckBox("", "user_viewemail", $user_viewemail); 
     95$mailmaga_option = new XoopsFormCheckBox(_US_MAILMAGA, "mailmaga", $mailmaga); 
    9696$mailmaga_option->addOption(1, _US_MAILMAGA); 
    9797$reg_form->addElement($mailmaga_option); 
  • temp/test-xoops.ec-cube.net/html/language/japanese/user.php

    r1063 r1067  
    3636define('_US_REGISTERNG','ÅÐÏ¿¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿'); 
    3737define('_US_MAILOK','Åö¥µ¥¤¥È¤Î¿·Ãå¾ðÊó¤Ê¤É¤ò<br />¥á¡¼¥ë¤Ç¼õ¤±¼è¤ë'); 
     38define('_US_MAILMAGA','¥ª¥Õ¥£¥·¥ã¥ë¥µ¥¤¥È¤Î<br />¥á¡¼¥ëÅÐÏ¿¤âƱ»þ¤Ë¹Ô¤¦'); 
    3839 
    3940define('_US_INVALIDMAIL','ÉÔÀµ¤Ê¥á¡¼¥ë¥¢¥É¥ì¥¹¤Ç¤¹¡£'); 
  • temp/test-xoops.ec-cube.net/html/register.php

    r405 r1067  
    124124$user_viewemail = (isset($_POST['user_viewemail']) && intval($_POST['user_viewemail'])) ? 1 : 0; 
    125125$user_mailok = (isset($_POST['user_mailok']) && intval($_POST['user_mailok'])) ? 1 : 0; 
     126$mailmaga = (isset($_POST['mailmaga']) && intval($_POST['mailmaga'])) ? 1 : 0; 
    126127$agree_disc = 1; 
    127128switch ( $op ) { 
Note: See TracChangeset for help on using the changeset viewer.