summaryrefslogtreecommitdiff
path: root/includes/pager.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-09 23:27:22 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-09 23:27:22 +0000
commit951b553a9887df92d93ecc42e7e83ca568e26aae (patch)
treec35a2ae7f53ecbd83e6ff52b847a6c469e5a438a /includes/pager.inc
parent00ee7f747b0920f2b8375b494930b19a25030a57 (diff)
downloadbrdo-951b553a9887df92d93ecc42e7e83ca568e26aae.tar.gz
brdo-951b553a9887df92d93ecc42e7e83ca568e26aae.tar.bz2
- Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.
Diffstat (limited to 'includes/pager.inc')
-rw-r--r--includes/pager.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/pager.inc b/includes/pager.inc
index a567499b2..602f6e78a 100644
--- a/includes/pager.inc
+++ b/includes/pager.inc
@@ -28,7 +28,7 @@ function pager_display($tags = "", $limit = 10, $element = 0, $type = "default",
*
* @see pager_display
*/
-function pager_display_default($tags = "", $limit = 10, $element = 0, $attributes = array()) {
+function theme_pager_display_default($tags = "", $limit = 10, $element = 0, $attributes = array()) {
global $pager_total;
if ($pager_total[$element] > $limit) {
$output .= "<div id=\"pager\" class=\"container-inline\">";
@@ -51,13 +51,13 @@ function pager_display_default($tags = "", $limit = 10, $element = 0, $attribute
*
* @see pager_display
*/
-function pager_display_simple($tags = "", $limit = 10, $element = 0, $attributes = array()) {
+function theme_pager_display_simple($tags = "", $limit = 10, $element = 0, $attributes = array()) {
/*
** It's left as an exercise to theme writers to create an alternative
** pager for pager_display_simple(). if your theme does not offer a
** replacement, the theme.inc pager_display_default() is used.
*/
- return pager_display_default($tags, $limit, $element, $attributes);
+ return theme_pager_display_default($tags, $limit, $element, $attributes);
}
/**
@@ -68,13 +68,13 @@ function pager_display_simple($tags = "", $limit = 10, $element = 0, $attributes
*
* @see pager_display
*/
-function pager_display_admin($tags = "", $limit = 10, $element = 0, $attributes = array()) {
+function theme_pager_display_admin($tags = "", $limit = 10, $element = 0, $attributes = array()) {
/*
** It's left as an exercise to theme writers to create an alternative
** pager for pager_display_admin(). if your theme does not offer a
** replacement, the pager.inc pager_display_default() is used.
*/
- return pager_display_default($tags, $limit, $element, $attributes);
+ return theme_pager_display_default($tags, $limit, $element, $attributes);
}
/* *******************************************************************