diff options
Diffstat (limited to 'includes/pager.inc')
-rw-r--r-- | includes/pager.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pager.inc b/includes/pager.inc index 98ffd4613..871f3348a 100644 --- a/includes/pager.inc +++ b/includes/pager.inc @@ -265,7 +265,7 @@ function pager_list($limit, $element = 0, $quantity = 5, $text = "", $attributes $output .= pager_previous($i, $limit, $element, ($pager_current - $i), $attributes) ." "; } if ($i == $pager_current) { - $output .= "<b>$i</b> "; + $output .= "<strong>$i</strong> "; } if ($i > $pager_current) { $output .= pager_next($i, $limit, $element, ($i - $pager_current), $attributes) ." "; |