Changeset 5233 for OpenPNE/branches/stable-2.8.x/webapp/modules/pc/do/c_event_edit_update_c_commu_topic.php
- Timestamp:
- Feb 18, 2008, 10:20:22 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/stable-2.8.x/webapp/modules/pc/do/c_event_edit_update_c_commu_topic.php
r4939 r5233 66 66 } 67 67 68 if ( $upfile_obj1['error'] !== UPLOAD_ERR_NO_FILE) {68 if (!empty($upfile_obj1) && !$upfile_obj1['error'] !== UPLOAD_ERR_NO_FILE) { 69 69 if (!($image = t_check_image($upfile_obj1))) { 70 70 $err_msg[] = '画像1は'.IMAGE_MAX_FILESIZE.'KB以内のGIF・JPEG・PNGにしてください'; 71 71 } 72 72 } 73 if ( $upfile_obj2['error'] !== UPLOAD_ERR_NO_FILE) {73 if (!empty($upfile_obj2) && $upfile_obj2['error'] !== UPLOAD_ERR_NO_FILE) { 74 74 if (!($image = t_check_image($upfile_obj2))) { 75 75 $err_msg[] = '画像2は'.IMAGE_MAX_FILESIZE.'KB以内のGIF・JPEG・PNGにしてください'; 76 76 } 77 77 } 78 if ( $upfile_obj3['error'] !== UPLOAD_ERR_NO_FILE) {78 if (!empty($upfile_obj3) && $upfile_obj3['error'] !== UPLOAD_ERR_NO_FILE) { 79 79 if (!($image = t_check_image($upfile_obj3))) { 80 80 $err_msg[] = '画像3は'.IMAGE_MAX_FILESIZE.'KB以内のGIF・JPEG・PNGにしてください';
Note: See TracChangeset
for help on using the changeset viewer.