diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-22 17:30:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-22 17:30:43 +0000 |
commit | 7883ea6e1ee8bccf28fbd581f9ce5e5b07cd8a5d (patch) | |
tree | c936c4bb87b4baec30d6eb3e73c3bd687ae3ed8d | |
parent | 770174b2994937f7dc5bba43e17e5b2a07421d33 (diff) | |
download | brdo-7883ea6e1ee8bccf28fbd581f9ce5e5b07cd8a5d.tar.gz brdo-7883ea6e1ee8bccf28fbd581f9ce5e5b07cd8a5d.tar.bz2 |
- Accessibility improvement: changed a <b>-tag to a <strong>-tag, used to
indicated the current page.
-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) ." "; |