summaryrefslogtreecommitdiff
path: root/modules/profile
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-10-06 13:38:40 +0000
committerDries Buytaert <dries@buytaert.net>2010-10-06 13:38:40 +0000
commitfb8025056c39148dc784d529374e3e48ebebb454 (patch)
tree3573d5155e371139efe153bf8ef397fa6994ec07 /modules/profile
parent1680103636c556503187f980f1b5dd4a66a72853 (diff)
downloadbrdo-fb8025056c39148dc784d529374e3e48ebebb454.tar.gz
brdo-fb8025056c39148dc784d529374e3e48ebebb454.tar.bz2
- Patch #932098 by sun: various bogus theme variables.
Diffstat (limited to 'modules/profile')
-rw-r--r--modules/profile/profile.pages.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile/profile.pages.inc b/modules/profile/profile.pages.inc
index a85d6fe1f..064630ba4 100644
--- a/modules/profile/profile.pages.inc
+++ b/modules/profile/profile.pages.inc
@@ -74,7 +74,7 @@ function profile_browse() {
$content .= theme('profile_listing', array('account' => $account, 'fields' => $profile));
}
$output = theme('profile_wrapper', array('content' => $content));
- $output .= theme('pager', array('tags' => NULL));
+ $output .= theme('pager');
if ($field->type == 'selection' || $field->type == 'list' || $field->type == 'textfield') {
$title = strtr(check_plain($field->page), array('%value' => drupal_placeholder($value)));
@@ -111,7 +111,7 @@ function profile_browse() {
$content .= theme('profile_listing', array('account' => $account, 'fields' => $profile));
}
$output = theme('profile_wrapper', array('content' => $content));
- $output .= theme('pager', array('tags' => NULL));
+ $output .= theme('pager');
drupal_set_title(t('User list'));
return $output;