Changeset 4938
- Timestamp:
- Jan 14, 2008, 4:09:27 PM (15 years ago)
- Location:
- OpenPNE/branches/stable-2.10.x/webapp
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/stable-2.10.x/webapp/lib/util/page.php
r4270 r4938 244 244 'type' => 'int', 245 245 'default' => '0', 246 'min' => '0', 246 247 'caption' => '募集人数', 247 248 ), -
OpenPNE/branches/stable-2.10.x/webapp/modules/ktai/do/c_event_add_insert_c_commu_topic.php
r4860 r4938 53 53 } 54 54 } 55 if ( $event['capacity'] != "" && 1*$event['capacity'] < 1 ) 56 $err_msg[] = "募集人数は1以上の数値を指定してください"; 57 55 58 56 if ($err_msg) { 59 57 $_REQUEST = $event; -
OpenPNE/branches/stable-2.10.x/webapp/modules/ktai/do/c_event_edit_update_c_commu_topic.php
r4860 r4938 55 55 } 56 56 } 57 if ( $event['capacity'] != "" && 1*$event['capacity'] < 1 ) 58 $err_msg[] = "募集人数は1以上の数値を指定してください"; 59 57 60 58 if ($err_msg) { 61 59 $_REQUEST = $event; -
OpenPNE/branches/stable-2.10.x/webapp/modules/pc/do/c_event_add_insert_c_commu_topic.php
r4860 r4938 61 61 } 62 62 } 63 if ( $event['capacity'] != "" && 1*$event['capacity'] < 1 ) 64 $err_msg[] = "募集人数は1以上の数値を指定してください"; 65 63 66 64 if ($err_msg) { 67 65 $_REQUEST = $event; -
OpenPNE/branches/stable-2.10.x/webapp/modules/pc/do/c_event_edit_update_c_commu_topic.php
r4860 r4938 65 65 } 66 66 } 67 if ( $event['capacity'] != "" && 1*$event['capacity'] < 1 ) 68 $err_msg[] = "募集人数は1以上の数値を指定してください"; 69 67 70 68 if ($upfile_obj1['error'] !== UPLOAD_ERR_NO_FILE) { 71 69 if (!($image = t_check_image($upfile_obj1))) { -
OpenPNE/branches/stable-2.10.x/webapp/modules/pc/page/c_event_add_confirm.php
r4860 r4938 63 63 } 64 64 } 65 if ( $event['capacity'] != "" && 1*$event['capacity'] < 1 ) 66 $err_msg[] = "募集人数は1以上の数値を指定してください"; 67 65 68 66 if ($upfile_obj1['error'] !== UPLOAD_ERR_NO_FILE) { 69 67 if (!($image = t_check_image($upfile_obj1))) {
Note: See TracChangeset
for help on using the changeset viewer.