Changeset 5567
- Timestamp:
- Mar 4, 2008, 4:00:34 PM (14 years ago)
- Location:
- OpenPNE/branches/work/ebihara/prj_id_login/webapp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/work/ebihara/prj_id_login/webapp/lib/auth.inc
r5565 r5567 40 40 $GLOBALS['AUTH'] = $auth; 41 41 42 if (OPENPNE_AUTH_MODE == 'slavepne' && (empty($_SESSION['regist_step']) || !$_SESSION['regist_step'])) {42 if (OPENPNE_AUTH_MODE != 'email' && (empty($_SESSION['regist_step']) || !$_SESSION['regist_step'])) { 43 43 $check_param = db_member_check_param_inputed($u); 44 44 $_SESSION['regist_step'] = ($check_param == 0); … … 53 53 ); 54 54 55 if ( ($check_param == 1) && !$prof_ext_page[$current_page]) {55 if (OPENPNE_AUTH_MODE == 'slavepne' && ($check_param == 1) && !$prof_ext_page[$current_page]) { 56 56 openpne_redirect('pc', 'page_h_regist_intro'); 57 57 } -
OpenPNE/branches/work/ebihara/prj_id_login/webapp/modules/ktai/auth.inc
r5565 r5567 36 36 37 37 38 if (OPENPNE_AUTH_MODE == 'slavepne' && (empty($_SESSION['regist_step']) || !$_SESSION['regist_step'])) {38 if (OPENPNE_AUTH_MODE != 'email' && (empty($_SESSION['regist_step']) || !$_SESSION['regist_step'])) { 39 39 $check_param = db_member_check_param_inputed($u, true); 40 40 $_SESSION['regist_step'] = ($check_param == 0); … … 48 48 ); 49 49 50 if ( ($check_param == 1) && !$prof_ext_page[$current_page]) {50 if (OPENPNE_AUTH_MODE == 'slavepne' && ($check_param == 1) && !$prof_ext_page[$current_page]) { 51 51 openpne_redirect('ktai', 'page_h_regist_pre'); 52 52 }
Note: See TracChangeset
for help on using the changeset viewer.