Merge branch 'master' of github.com:gnuboard/g4s

This commit is contained in:
chicpro
2013-01-17 12:57:51 +09:00
4 changed files with 47 additions and 38 deletions

View File

@ -38,8 +38,9 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<li>
<a href="<? echo $view['file'][$i]['href']; ?>" onclick="javascript:file_download('<? echo $view['file'][$i]['href'].'&amp;confirm=yes'; ?>', '<?=$view['file'][$i]['source']?>'); return false;">
<span><?=$view['file'][$i]['source']?> (<?=$view['file'][$i]['size']?>)</span>
<span class="bo_v_file_cnt"><?=$view['file'][$i]['download']?></span>
<strong><?=$view['file'][$i]['source']?></strong>
<span> (<?=$view['file'][$i]['size']?>)</span>
<span class="bo_v_file_cnt"><?=$view['file'][$i]['download']?>회 다운로드</span>
<span>DATE : <?=$view['file'][$i]['datetime']?></span>
</a>
</li>
@ -65,7 +66,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<li>
<a href="<?=$view['link_href'][$i]?>" target="_blank">
<span><?=$link?></span>
<strong><?=$link?></strong>
<span class="bo_v_link_cnt"><?=$view['link_hit'][$i]?>회 연결</span>
</a>
</li>

View File

@ -28,8 +28,8 @@ $po = sql_fetch(" select * from {$g4['poll_table']} where po_id = '$po_id' ");
<? } ?>
</ul>
<footer>
<input type="submit" value="투표하기">
<a href="<?="{$g4['bbs_url']}/poll_result.php?po_id={$po_id}&amp;skin_dir={$skin_dir}";?>" target="win_poll">결과보기</a>
<input type="submit" class="btn_submit" value="투표하기">
<a href="<?="{$g4['bbs_url']}/poll_result.php?po_id={$po_id}&amp;skin_dir={$skin_dir}";?>" class="btn_cancel" target="win_poll">결과보기</a>
</footer>
</section>
</form>

View File

@ -16,8 +16,8 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<li>
<p>
<?=$list[$i]['content']?>
<strong><?=$list[$i]['cnt']?>표</strong>
<span><?=number_format($list[$i]['rate'], 1)?>%</span>
<strong><?=$list[$i]['cnt']?> 표</strong>
<span><?=number_format($list[$i]['rate'], 1)?> 퍼센트</span>
</p>
<div class="poll_result_graph">
<span style="width:<?=number_format($list[$i]['rate'], 1)?>%"></span>
@ -79,10 +79,12 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
</section>
<? } ?>
<section id="poll_result_another">
<section id="poll_result_oth">
<h2>다른 투표 결과 보기</h2>
<ul>
<? for ($i=0; $i<count($list3); $i++) { ?><li><a href="./poll_result.php?po_id=<?=$list3[$i]['po_id']?>&amp;skin_dir=<?=$skin_dir?>">[<?=$list3[$i]['date']?>] <?=$list3[$i]['subject']?></a></li><? } ?>
<? for ($i=0; $i<count($list3); $i++) { ?>
<li><a href="./poll_result.php?po_id=<?=$list3[$i]['po_id']?>&amp;skin_dir=<?=$skin_dir?>">[<?=$list3[$i]['date']?>] <?=$list3[$i]['subject']?></a></li>
<? } ?>
</ul>
</section>