갯수 -> 개수 혹은 수 로 수정, 뮤죤님

This commit is contained in:
whitedot
2013-11-12 14:14:58 +09:00
parent b42ef72337
commit 3816645aae
6 changed files with 7 additions and 7 deletions

View File

@ -633,7 +633,7 @@ $pg_anchor = '<ul class="anchor">
</td>
</tr>
<tr>
<th scope="row"><label for="bo_upload_count">파일 업로드 수<strong class="sound_only">필수</strong></label></th>
<th scope="row"><label for="bo_upload_count">파일 업로드 수<strong class="sound_only">필수</strong></label></th>
<td>
<?php echo help('게시물 한건당 업로드 할 수 있는 파일의 최대 개수 (0 은 파일첨부 사용하지 않음)') ?>
<input type="text" name="bo_upload_count" value="<?php echo $board['bo_upload_count'] ?>" id="bo_upload_count" required class="required numeric frm_input" size="4">

View File

@ -170,7 +170,7 @@ sql_query(" ALTER TABLE `$g5[login_table]` DROP INDEX `lo_datetime` ", false);
// 회원테이블의 회원가입일시에 인덱스 추가
sql_query(" ALTER TABLE `$g5[member_table]` ADD INDEX `mb_datetime` ( `mb_datetime` ) ", false);
// 게시판설정 테이블에 업로드 수, 이메일 사용 필드 추가
// 게시판설정 테이블에 업로드 수, 이메일 사용 필드 추가
sql_query(" ALTER TABLE `$g5[board_table]`
ADD `bo_upload_count` TINYINT NOT NULL AFTER `bo_notice` ,
ADD `bo_use_email` TINYINT NOT NULL AFTER `bo_upload_count` ", FALSE);