Changeset 4801
- Timestamp:
- Dec 20, 2007, 4:29:51 PM (15 years ago)
- Location:
- OpenPNE/branches/prj/slavepne2/webapp/modules/setup
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/prj/slavepne2/webapp/modules/setup/do/setup.php
r4782 r4801 16 16 { 17 17 $errors = array(); 18 if (IS_SLAVEPNE == =false && $requests['password'] != $requests['password2']) {18 if (IS_SLAVEPNE == false && $requests['password'] != $requests['password2']) { 19 19 $errors[] = 'パスワードが一致していません'; 20 20 } … … 22 22 $errors[] = '管理用パスワードが一致していません'; 23 23 } 24 if (IS_SLAVEPNE == =true) {24 if (IS_SLAVEPNE == true) { 25 25 $auth_config = get_auth_config(false); 26 26 $storage = Auth::_factory($auth_config['storage'],$auth_config['options']); … … 51 51 ); 52 52 53 if (IS_SLAVEPNE == =true && IS_SLAVEPNE_EMAIL_REGIST === false) {53 if (IS_SLAVEPNE == true && IS_SLAVEPNE_EMAIL_REGIST === false) { 54 54 $data['ktai_address'] = t_encrypt('1@ktai.example.com'); 55 55 } … … 65 65 db_insert('c_admin_user', $data); 66 66 67 if (IS_SLAVEPNE == =true) {67 if (IS_SLAVEPNE == true) { 68 68 db_member_insert_username(1, $requests['username']); 69 69 } -
OpenPNE/branches/prj/slavepne2/webapp/modules/setup/validate/do/setup.ini
r4782 r4801 16 16 type = "regexp" 17 17 regexp = "/^[a-z0-9]+$/i" 18 min = 619 max = 1220 18 required = 1 21 19 caption = "パスワード"
Note: See TracChangeset
for help on using the changeset viewer.