- Timestamp:
- Feb 18, 2008, 10:07:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/stable-2.10.x/webapp/modules/pc/page/c_event_add_confirm.php
r5231 r5232 57 57 } 58 58 59 if ( empty($upfile_obj1) && $upfile_obj1['error'] !== UPLOAD_ERR_NO_FILE) {59 if (!empty($upfile_obj1) && $upfile_obj1['error'] !== UPLOAD_ERR_NO_FILE) { 60 60 if (!($image = t_check_image($upfile_obj1))) { 61 61 $err_msg[] = '画像1は'.IMAGE_MAX_FILESIZE.'KB以内のGIF・JPEG・PNGにしてください'; 62 62 } 63 63 } 64 if ( empty($upfile_obj2) && $upfile_obj2['error'] !== UPLOAD_ERR_NO_FILE) {64 if (!empty($upfile_obj2) && $upfile_obj2['error'] !== UPLOAD_ERR_NO_FILE) { 65 65 if (!($image = t_check_image($upfile_obj2))) { 66 66 $err_msg[] = '画像2は'.IMAGE_MAX_FILESIZE.'KB以内のGIF・JPEG・PNGにしてください'; 67 67 } 68 68 } 69 if ( empty($upfile_obj3) && $upfile_obj3['error'] !== UPLOAD_ERR_NO_FILE) {69 if (!empty($upfile_obj3) && $upfile_obj3['error'] !== UPLOAD_ERR_NO_FILE) { 70 70 if (!($image = t_check_image($upfile_obj3))) { 71 71 $err_msg[] = '画像3は'.IMAGE_MAX_FILESIZE.'KB以内のGIF・JPEG・PNGにしてください';
Note: See TracChangeset
for help on using the changeset viewer.