Merge branch 'master' of github.com:gnuboard/g5 into g5

This commit is contained in:
chicpro
2014-04-02 09:55:19 +09:00
10 changed files with 23 additions and 23 deletions

View File

@ -61,7 +61,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
<thead> <thead>
<tr> <tr>
<th scope="col"> <th scope="col">
<label for="chkall" class="sound_only">게시판 전체</label> <label for="chkall" class="sound_only">현재 페이지 게시판 전체</label>
<input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);"> <input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);">
</th> </th>
<th scope="col">게시판</th> <th scope="col">게시판</th>

View File

@ -33,7 +33,7 @@ $total_page = ceil($total_count / $rows); // 전체 페이지 계산
if (!$page) $page = 1; // 페이지가 없으면 첫 페이지 (1 페이지) if (!$page) $page = 1; // 페이지가 없으면 첫 페이지 (1 페이지)
$from_record = ($page - 1) * $rows; // 시작 열을 구함 $from_record = ($page - 1) * $rows; // 시작 열을 구함
$group_select = '<select name="gr_id" id="gr_id" title="검색대상"><option value="">전체그룹'; $group_select = '<label for="gr_id" class="sound_only">그룹</label><select name="gr_id" id="gr_id"><option value="">전체그룹';
$sql = " select gr_id, gr_subject from {$g5['group_table']} order by gr_id "; $sql = " select gr_id, gr_subject from {$g5['group_table']} order by gr_id ";
$result = sql_query($sql); $result = sql_query($sql);
for ($i=0; $row=sql_fetch_array($result); $i++) { for ($i=0; $row=sql_fetch_array($result); $i++) {

View File

@ -29,31 +29,31 @@ if (!isset($_POST['agree']) || $_POST['agree'] != '동의함') {
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<th scope="row"><label for="">Host</label></th> <th scope="row"><label for="mysql_host">Host</label></th>
<td> <td>
<input name="mysql_host" type="text" value="localhost" id="mysql_host"> <input name="mysql_host" type="text" value="localhost" id="mysql_host">
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="">User</label></th> <th scope="row"><label for="mysql_user">User</label></th>
<td> <td>
<input name="mysql_user" type="text" id="mysql_user"> <input name="mysql_user" type="text" id="mysql_user">
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="">Password</label></th> <th scope="row"><label for="mysql_pass">Password</label></th>
<td> <td>
<input name="mysql_pass" type="text" id="mysql_pass"> <input name="mysql_pass" type="text" id="mysql_pass">
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="">DB</label></th> <th scope="row"><label for="mysql_db">DB</label></th>
<td> <td>
<input name="mysql_db" type="text" id="mysql_db"> <input name="mysql_db" type="text" id="mysql_db">
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="">TABLE명 접두사</label></th> <th scope="row"><label for="table_prefix">TABLE명 접두사</label></th>
<td> <td>
<input name="table_prefix" type="text" value="g5_" id="table_prefix"> <input name="table_prefix" type="text" value="g5_" id="table_prefix">
<span>가능한 변경하지 마십시오.</span> <span>가능한 변경하지 마십시오.</span>
@ -70,25 +70,25 @@ if (!isset($_POST['agree']) || $_POST['agree'] != '동의함') {
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<th scope="row"><label for="">회원 ID</label></th> <th scope="row"><label for="admin_id">회원 ID</label></th>
<td> <td>
<input name="admin_id" type="text" value="admin" id="admin_id"> <input name="admin_id" type="text" value="admin" id="admin_id">
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="">비밀번호</label></th> <th scope="row"><label for="admin_pass">비밀번호</label></th>
<td> <td>
<input name="admin_pass" type="text" id="admin_pass"> <input name="admin_pass" type="text" id="admin_pass">
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="">이름</label></th> <th scope="row"><label for="admin_name">이름</label></th>
<td> <td>
<input name="admin_name" type="text" value="최고관리자" id="admin_name"> <input name="admin_name" type="text" value="최고관리자" id="admin_name">
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="">E-mail</label></th> <th scope="row"><label for="admin_email">E-mail</label></th>
<td> <td>
<input name="admin_email" type="text" value="admin@domain.com" id="admin_email"> <input name="admin_email" type="text" value="admin@domain.com" id="admin_email">
</td> </td>

View File

@ -107,7 +107,7 @@ var char_max = parseInt(<?php echo $comment_max ?>); // 최대
<?php if ($is_guest) { ?> <?php if ($is_guest) { ?>
<tr> <tr>
<th scope="row"><label for="wr_name">이름<strong class="sound_only"> 필수</strong></label></th> <th scope="row"><label for="wr_name">이름<strong class="sound_only"> 필수</strong></label></th>
<td><input type="text" name="wr_name" id="wr_name" required class="frm_input required" size="5" maxLength="20" value="<?php echo get_cookie("ck_sns_name"); ?>"></td> <td><input type="text" name="wr_name" value="<?php echo get_cookie("ck_sns_name"); ?>" id="wr_name" required class="frm_input required" size="5" maxLength="20"></td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="wr_password">비밀번호<strong class="sound_only"> 필수</strong></label></th> <th scope="row"><label for="wr_password">비밀번호<strong class="sound_only"> 필수</strong></label></th>

View File

@ -75,7 +75,7 @@ add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
<?php if ($is_admin) { ?> <?php if ($is_admin) { ?>
<td class="td_chk"> <td class="td_chk">
<label for="chk_bn_id_<?php echo $i; ?>" class="sound_only"><?php echo $num?>번</label> <label for="chk_bn_id_<?php echo $i; ?>" class="sound_only"><?php echo $num?>번</label>
<input type="checkbox" name="chk_bn_id[]" value="<?php echo $i; ?>"> <input type="checkbox" name="chk_bn_id[]" value="<?php echo $i; ?>" id="chk_bn_id_<?php echo $i; ?>">
<input type="hidden" name="bo_table[<?php echo $i; ?>]" value="<?php echo $list[$i]['bo_table']; ?>"> <input type="hidden" name="bo_table[<?php echo $i; ?>]" value="<?php echo $list[$i]['bo_table']; ?>">
<input type="hidden" name="wr_id[<?php echo $i; ?>]" value="<?php echo $list[$i]['wr_id']; ?>"> <input type="hidden" name="wr_id[<?php echo $i; ?>]" value="<?php echo $list[$i]['wr_id']; ?>">
</td> </td>

View File

@ -125,7 +125,7 @@ add_stylesheet('<link rel="stylesheet" href="'.$qa_skin_url.'/style.css">', 0);
<form name="fsearch" method="get"> <form name="fsearch" method="get">
<input type="hidden" name="sca" value="<?php echo $sca ?>"> <input type="hidden" name="sca" value="<?php echo $sca ?>">
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label> <label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="frm_input required" size="15" maxlength="15"> <input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" id="stx" required class="frm_input required" size="15" maxlength="15">
<input type="submit" value="검색" class="btn_submit"> <input type="submit" value="검색" class="btn_submit">
</form> </form>
</fieldset> </fieldset>