summaryrefslogtreecommitdiff
path: root/modules/profile/profile.pages.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-09 01:00:08 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-09 01:00:08 +0000
commitc05f2181dc8556cb6700e8c6bb6e6ded43273192 (patch)
tree5446facb7f5f18dfaac48aade56c0d86f1477fff /modules/profile/profile.pages.inc
parent48dd14a898420ae98984c951f59e8d299080bee8 (diff)
downloadbrdo-c05f2181dc8556cb6700e8c6bb6e6ded43273192.tar.gz
brdo-c05f2181dc8556cb6700e8c6bb6e6ded43273192.tar.bz2
- Patch #572618 by effulgentsia, pwolanin, sun: all theme functions should take a single argument. Code clean-up and performance improvement. Woot.
Diffstat (limited to 'modules/profile/profile.pages.inc')
-rw-r--r--modules/profile/profile.pages.inc14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/profile/profile.pages.inc b/modules/profile/profile.pages.inc
index 300e57cae..8c60c68f7 100644
--- a/modules/profile/profile.pages.inc
+++ b/modules/profile/profile.pages.inc
@@ -71,13 +71,13 @@ function profile_browse() {
$content = '';
foreach ($users as $account) {
$profile = _profile_update_user_fields($fields, $account);
- $content .= theme('profile_listing', $account, $profile);
+ $content .= theme('profile_listing', array('account' => $account, 'fields' => $profile));
}
- $output = theme('profile_wrapper', $content);
- $output .= theme('pager', NULL);
+ $output = theme('profile_wrapper', array('content' => $content));
+ $output .= theme('pager', array('tags' => NULL));
if ($field->type == 'selection' || $field->type == 'list' || $field->type == 'textfield') {
- $title = strtr(check_plain($field->page), array('%value' => theme('placeholder', $value)));
+ $title = strtr(check_plain($field->page), array('%value' => theme('placeholder', array('text' => $value))));
}
else {
$title = check_plain($field->page);
@@ -108,10 +108,10 @@ function profile_browse() {
$content = '';
foreach ($users as $account) {
$profile = _profile_update_user_fields($fields, $account);
- $content .= theme('profile_listing', $account, $profile);
+ $content .= theme('profile_listing', array('account' => $account, 'fields' => $profile));
}
- $output = theme('profile_wrapper', $content);
- $output .= theme('pager', NULL);
+ $output = theme('profile_wrapper', array('content' => $content));
+ $output .= theme('pager', array('tags' => NULL));
drupal_set_title(t('User list'));
return $output;