사용자: pagination ie6 깨지는 문제 해결

This commit is contained in:
whitedot
2013-01-24 14:47:11 +09:00
parent 677d32f8fd
commit 86d1b57c91
2 changed files with 3 additions and 3 deletions

View File

@ -33,9 +33,9 @@ function get_paging($write_pages, $cur_page, $total_page, $url, $add="")
if ($total_page > 1) {
for ($k=$start_page;$k<=$end_page;$k++) {
if ($cur_page != $k)
$str .= '<a href="'.$url.$k.$add.'" class="pg_page">'.$k.'<span class="sound_only">페이지</span></a>'.PHP_EOL;
$str .= '<a href="'.$url.$k.$add.'" class="pg_page">'.$k.'</a><span class="sound_only">페이지</span>'.PHP_EOL;
else
$str .= '<strong class="pg_current"><span class="sound_only">선택된</span>'.$k.'<span class="sound_only">페이지</span></strong>'.PHP_EOL;
$str .= '<span class="sound_only">선택된</span><strong class="pg_current">'.$k.'</strong><span class="sound_only">페이지</span>'.PHP_EOL;
}
}