Changeset 5031
- Timestamp:
- Jan 24, 2008, 9:08:43 PM (14 years ago)
- Location:
- OpenPNE/branches/prj/slavepne2/webapp
- Files:
-
- 5 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/prj/slavepne2/webapp/lib/auth.inc
r4032 r5031 45 45 $current_page = $GLOBALS['__Framework']['current_type']."_".$GLOBALS['__Framework']['current_action']; 46 46 47 //プロフィールが未登録の場合はリダイレクト 48 $prof_ext_page=array( 49 'do_h_regist_prof'=>true, 50 'page_h_regist_prof'=>true, 51 'do_inc_page_header_logout'=>true, 47 // プロフィールが未登録の場合はリダイレクト 48 $prof_ext_page = array( 49 'do_h_regist_prof' => true, 50 'page_h_regist_prof' => true, 51 'do_inc_page_header_logout' => true, 52 'page_h_regist_intro' => true, 52 53 ); 53 54 54 if (($check_param ==1) && !$prof_ext_page[$current_page]) {55 openpne_redirect('pc', 'page_h_regist_ prof');55 if (($check_param == 1) && !$prof_ext_page[$current_page]) { 56 openpne_redirect('pc', 'page_h_regist_intro'); 56 57 } 57 58 58 // メールアドレスが未登録の場合はリダイレクト59 // メールアドレスが未登録の場合はリダイレクト 59 60 $mail_ext_page=array( 60 'do_h_regist_address'=>true,61 'page_h_regist_address'=>true,62 'do_inc_page_header_logout'=>true,61 'do_h_regist_address'=>true, 62 'page_h_regist_address'=>true, 63 'do_inc_page_header_logout'=>true, 63 64 ); 64 65 65 if (($check_param ==2) && !$mail_ext_page[$current_page]) {66 if (($check_param == 2) && !$mail_ext_page[$current_page]) { 66 67 openpne_redirect('pc', 'page_h_regist_address'); 67 68 } -
OpenPNE/branches/prj/slavepne2/webapp/modules/ktai/auth.inc
r4096 r5031 45 45 46 46 //プロフィールが未登録の場合はリダイレクト 47 $prof_ext_page=array( 48 'do_h_regist_prof'=>true, 49 'page_h_regist_prof'=>true, 47 $prof_ext_page = array( 48 'page_h_regist_pre' => true, 49 'do_h_regist_prof' => true, 50 'page_h_regist_prof' => true, 50 51 ); 51 52 52 if (($check_param ==1) && !$prof_ext_page[$current_page]) {53 openpne_redirect('ktai', 'page_h_regist_pr of');53 if (($check_param == 1) && !$prof_ext_page[$current_page]) { 54 openpne_redirect('ktai', 'page_h_regist_pre'); 54 55 } 55 56 56 57 //メールアドレスが未登録の場合はリダイレクト 57 $mail_ext_page =array(58 'do_h_regist_address'=>true,59 'page_h_regist_address'=>true,58 $mail_ext_page = array( 59 'do_h_regist_address' => true, 60 'page_h_regist_address' => true, 60 61 ); 61 62 62 if (($check_param ==2) && !$mail_ext_page[$current_page]) {63 if (($check_param == 2) && !$mail_ext_page[$current_page]) { 63 64 openpne_redirect('ktai', 'page_h_regist_address'); 64 65 }
Note: See TracChangeset
for help on using the changeset viewer.