Changeset 2403
- Timestamp:
- Apr 4, 2007, 6:53:07 PM (15 years ago)
- Location:
- OpenPNE/branches/2_6/webapp/modules
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/2_6/webapp/modules/admin/do/insert_c_profile.php
r882 r2403 17 17 if (db_admin_c_profile_name_exists($requests['name'])) { 18 18 admin_client_redirect('insert_c_profile', 'その識別名は既に登録されています'); 19 } 20 if (is_numeric($requests['name'])) { 21 admin_client_redirect('insert_c_profile', '識別名は数値のみには設定できません'); 19 22 } 20 23 -
OpenPNE/branches/2_6/webapp/modules/admin/do/update_c_profile.php
r882 r2403 19 19 if ($id && ($id != $requests['c_profile_id'])) { 20 20 admin_client_redirect('update_c_profile', 'その識別名は既に登録されています', 21 'c_profile_id='.$requests['c_profile_id']); 22 } 23 if (is_numeric($requests['name'])) { 24 admin_client_redirect('update_c_profile', '識別名は数値のみには設定できません', 21 25 'c_profile_id='.$requests['c_profile_id']); 22 26 } -
OpenPNE/branches/2_6/webapp/modules/admin/templates/insert_c_profile.tpl
r1615 r2403 19 19 <tr> 20 20 <th>識別名</th> 21 <td><input type="text" class="basic" name="name" value="" size="20" /> <span class="caution">※半角英数 と _ の み</span></td>21 <td><input type="text" class="basic" name="name" value="" size="20" /> <span class="caution">※半角英数 と _ の組み合わせのみ(数値だけの入力は許容されません)</span></td> 22 22 </tr> 23 23 <tr> -
OpenPNE/branches/2_6/webapp/modules/admin/templates/update_c_profile.tpl
r1614 r2403 20 20 <tr> 21 21 <th>識別名</th> 22 <td><input type="text" class="basic" name="name" value="({$c_profile.name})" size="20" /> <span class="caution">※半角英数 と _ のみ </span></td>22 <td><input type="text" class="basic" name="name" value="({$c_profile.name})" size="20" /> <span class="caution">※半角英数 と _ のみ(数値のみも不可)</span></td> 23 23 </tr> 24 24 <tr> -
OpenPNE/branches/2_6/webapp/modules/ktai/do/h_config_prof_update_c_member.php
r1268 r2403 38 38 if ($profile['disp_config'] && 39 39 $profile['is_required'] && 40 !$c_member_profile_list[$profile['name']]['value']40 (is_null(!$c_member_profile_list[$profile['name']]['value']) || !$c_member_profile_list[$profile['name']]['value'] === '') 41 41 ) { 42 42 $errors[$profile['name']] = "{$profile['caption']}を入力してください"; -
OpenPNE/branches/2_6/webapp/modules/ktai/do/h_regist_prof.php
r1268 r2403 39 39 if ($profile['disp_regist'] && 40 40 $profile['is_required'] && 41 !$c_member_profile_list[$profile['name']]['value']41 (is_null(!$c_member_profile_list[$profile['name']]['value']) || !$c_member_profile_list[$profile['name']]['value'] === '') 42 42 ) { 43 43 $errors[$profile['name']] = "{$profile['caption']}を入力してください"; -
OpenPNE/branches/2_6/webapp/modules/ktai/do/o_insert_c_member.php
r1268 r2403 62 62 if ($profile['disp_regist'] && 63 63 $profile['is_required'] && 64 !$c_member_profile_list[$profile['name']]['value']64 (is_null(!$c_member_profile_list[$profile['name']]['value']) || !$c_member_profile_list[$profile['name']]['value'] === '') 65 65 ) { 66 66 $errors[$profile['name']] = "{$profile['caption']}を入力してください"; -
OpenPNE/branches/2_6/webapp/modules/pc/do/h_config_prof.php
r1268 r2403 37 37 if ($profile['disp_config'] 38 38 && $profile['is_required'] 39 && !$c_member_profile_list[$profile['name']]['value']39 && (is_null(!$c_member_profile_list[$profile['name']]['value']) || !$c_member_profile_list[$profile['name']]['value'] === '') 40 40 ) { 41 41 $errors[$profile['name']] = "{$profile['caption']}を入力してください"; -
OpenPNE/branches/2_6/webapp/modules/pc/do/o_regist_prof.php
r1268 r2403 83 83 if ( $profile['disp_regist'] && 84 84 $profile['is_required'] && 85 !$c_member_profile_list[$profile['name']]['value']85 (is_null(!$c_member_profile_list[$profile['name']]['value']) || !$c_member_profile_list[$profile['name']]['value'] === '') 86 86 ) { 87 87 $errors[$profile['name']] = $profile['caption'] . 'を入力してください';
Note: See TracChangeset
for help on using the changeset viewer.